summaryrefslogtreecommitdiff
path: root/classes/pluginhandler.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-03-30 13:02:24 +0300
committerAndrew Dolgov <[email protected]>2015-03-30 13:02:24 +0300
commit27f7b59353a076120407d8873ea86f5eea7d1dcf (patch)
tree0c9c3b0a7b705dc09855a6f308303427077590f9 /classes/pluginhandler.php
parentf75e7c64460b8337ecc769fb956cbe8a08b351e4 (diff)
add a wrapper for standard error codes returned by backend, also add explanation to the error object if possible
Diffstat (limited to 'classes/pluginhandler.php')
-rw-r--r--classes/pluginhandler.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/pluginhandler.php b/classes/pluginhandler.php
index 690305165..5ca5c17d3 100644
--- a/classes/pluginhandler.php
+++ b/classes/pluginhandler.php
@@ -11,10 +11,10 @@ class PluginHandler extends Handler_Protected {
if (method_exists($plugin, $method)) {
$plugin->$method();
} else {
- print json_encode(array("error" => "METHOD_NOT_FOUND"));
+ print error_json(13);
}
} else {
- print json_encode(array("error" => "PLUGIN_NOT_FOUND"));
+ print error_json(14);
}
}
}