diff options
Diffstat (limited to 'application/service')
-rw-r--r-- | application/service/files.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/application/service/files.php b/application/service/files.php index 15361227c..33354d456 100644 --- a/application/service/files.php +++ b/application/service/files.php @@ -66,6 +66,14 @@ class files { $multipaste_info[$item["url_id"]]["items"][$item["id"]] = array("id" => $item["id"]); } + // No idea why, but this can/could happen so be more forgiving and clean up + foreach ($multipaste_info as $key => $m) { + if (!isset($m["items"])) { + $CI->mmultipaste->delete_id($key); + unset($multipaste_info[$key]); + } + } + return $multipaste_info; } |