mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-06 07:01:30 -04:00
#1966 - "Fix your Gallery" shows 60/59 items completed.
- Fixed counter in gallery_task::fix that was often one too many.
For FIX_STATE_RUN_MISSING_ACCESS_CACHES, changed this:
$stack = explode(" ", $task->get("stack"));
To this:
$stack = array_filter(explode(" ", $task->get("stack")));
This commit is contained in:
@@ -612,7 +612,7 @@ class gallery_task_Core {
|
||||
break;
|
||||
|
||||
case self::FIX_STATE_RUN_MISSING_ACCESS_CACHES:
|
||||
$stack = explode(" ", $task->get("stack"));
|
||||
$stack = array_filter(explode(" ", $task->get("stack"))); // filter removes empty/zero ids
|
||||
if (!empty($stack)) {
|
||||
$id = array_pop($stack);
|
||||
$access_cache = ORM::factory("access_cache");
|
||||
|
||||
Reference in New Issue
Block a user