Rename the 'promiscous' mode to 'dangerous' as promiscuous is used elsewhere.

This commit is contained in:
donal72 2007-08-02 05:27:06 +00:00
parent 4fc66605f2
commit 68bcd355af
3 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@
/// If data submitted, process and store
if (($form = data_submitted()) && confirm_sesskey()) {
if (!empty($form->submit) && $form->submit == get_string('savechanges')) {
if (in_array($form->mode, array("off", "strict", "promiscuous"))) {
if (in_array($form->mode, array("off", "strict", "dangerous"))) {
if (set_config('mnet_dispatcher_mode', $form->mode)) {
redirect('index.php', get_string('changessaved'));
} else {

View File

@ -411,7 +411,7 @@ function mnet_permit_rpc_call($includefile, $functionname, $class=false) {
$permissionobj = record_exists_sql($sql);
if ($permissionobj === false) {
if ($permissionobj === false && 'dangerous' != $CFG->mnet_dispatcher_mode) {
return RPC_FORBIDDENMETHOD;
}

View File

@ -468,7 +468,7 @@ function mnet_server_dispatch($payload) {
}
////////////////////////////////////// STRICT MOD/*
} elseif ($callstack[0] == 'mod' || 'promiscuous' == $CFG->mnet_dispatcher_mode) {
} elseif ($callstack[0] == 'mod' || 'dangerous' == $CFG->mnet_dispatcher_mode) {
list($base, $module, $filename, $functionname) = $callstack;
////////////////////////////////////// STRICT MOD/*
@ -478,8 +478,8 @@ function mnet_server_dispatch($payload) {
$response = mnet_server_prepare_response($response);
echo $response;
////////////////////////////////////// PROMISCUOUS
} elseif ('promiscuous' == $CFG->mnet_dispatcher_mode && $MNET_REMOTE_CLIENT->plaintext_is_ok()) {
////////////////////////////////////// DANGEROUS
} elseif ('dangerous' == $CFG->mnet_dispatcher_mode && $MNET_REMOTE_CLIENT->plaintext_is_ok()) {
$functionname = array_pop($callstack);
$filename = array_pop($callstack);