summaryrefslogtreecommitdiffstats
path: root/application/controllers/file.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/controllers/file.php')
-rw-r--r--application/controllers/file.php6
1 files changed, 3 insertions, 3 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,