|
|
@ -63,7 +63,7 @@
|
|
|
|
if ($_SESSION["uid"]) {
|
|
|
|
if ($_SESSION["uid"]) {
|
|
|
|
if (!validate_session()) {
|
|
|
|
if (!validate_session()) {
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
print error_json(6);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
load_user_plugins( $_SESSION["uid"]);
|
|
|
|
load_user_plugins( $_SESSION["uid"]);
|
|
|
@ -104,13 +104,6 @@
|
|
|
|
5 => __("Power User"),
|
|
|
|
5 => __("Power User"),
|
|
|
|
10 => __("Administrator"));
|
|
|
|
10 => __("Administrator"));
|
|
|
|
|
|
|
|
|
|
|
|
#$error = sanity_check();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if ($error['code'] != 0 && $op != "logout") {
|
|
|
|
|
|
|
|
# print json_encode(array("error" => $error));
|
|
|
|
|
|
|
|
# return;
|
|
|
|
|
|
|
|
#}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$op = str_replace("-", "_", $op);
|
|
|
|
$op = str_replace("-", "_", $op);
|
|
|
|
|
|
|
|
|
|
|
|
$override = PluginHost::getInstance()->lookup_handler($op, $method);
|
|
|
|
$override = PluginHost::getInstance()->lookup_handler($op, $method);
|
|
|
@ -137,18 +130,18 @@
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
print error_json(6);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
print error_json(6);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
header("Content-Type: text/json");
|
|
|
|
print json_encode(array("error" => array("code" => 7)));
|
|
|
|
print error_json(13);
|
|
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
?>
|
|
|
|