mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 17:53:08 +02:00
fixes #1830 faster way to calculate number of orphans
* store count result in config table, as a cache * resets this cache on invalidate_user_cache * instead of a costly SQL query with a LEFT JOIN, use 2 simple COUNT in the 2 tables, and compare
This commit is contained in:
+1
-1
@@ -59,7 +59,7 @@ $nb_orphans = $page['nb_orphans']; // already calculated in admin.php
|
||||
|
||||
if ($page['nb_photos_total'] >= 100000) // but has not been calculated on a big gallery, so force it now
|
||||
{
|
||||
$nb_orphans = count(get_orphans());
|
||||
$nb_orphans = count_orphans();
|
||||
}
|
||||
|
||||
if ($nb_orphans > 0)
|
||||
|
||||
Reference in New Issue
Block a user