diff options
Diffstat (limited to 'application/controllers')
-rw-r--r-- | application/controllers/file.php | 6 | ||||
-rw-r--r-- | application/controllers/user.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/application/controllers/file.php b/application/controllers/file.php index 6e660b306..6a97c645f 100644 --- a/application/controllers/file.php +++ b/application/controllers/file.php @@ -286,7 +286,7 @@ class File extends MY_Controller { } } - if (request_type() == "json") { + if (static_storage("response_type") == "json") { return send_json_reply($this->data["urls"]); } @@ -466,7 +466,7 @@ class File extends MY_Controller { ORDER BY date $order ", array($user))->result_array(); - if (request_type() == "json") { + if (static_storage("response_type") == "json") { return send_json_reply($query); } @@ -539,7 +539,7 @@ class File extends MY_Controller { } } - if (request_type() == "json") { + if (static_storage("response_type") == "json") { return send_json_reply(array( "errors" => $errors, "deleted" => $deleted, diff --git a/application/controllers/user.php b/application/controllers/user.php index 56f571d6a..34d6c492d 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -131,7 +131,7 @@ class User extends MY_Controller { WHERE `user` = ? order by created desc ", array($userid))->result_array(); - if (request_type() == "json") { + if (static_storage("response_type") == "json") { return send_json_reply($query); } |