diff options
Diffstat (limited to 'application/controllers')
-rw-r--r-- | application/controllers/api/v2/file.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/application/controllers/api/v2/file.php b/application/controllers/api/v2/file.php index 5dedcd508..c3a42388b 100644 --- a/application/controllers/api/v2/file.php +++ b/application/controllers/api/v2/file.php @@ -66,11 +66,7 @@ class file extends \controllers\api\api_controller { } } - foreach (array("items", "multipaste_items") as $key) { - if (empty($history[$key])) { - $history[$key] = (object) array(); - } - } + $history = ensure_json_keys_contain_objects($history, array("items", "multipaste_items")); return $history; } |