Subversion Repositories oidplus

Rev

Rev 321 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 321 Rev 328
Line 38... Line 38...
38
                        }
38
                        }
39
 
39
 
40
                        OIDplus::config()->setValue($name, $value);
40
                        OIDplus::config()->setValue($name, $value);
41
                        OIDplus::logger()->log("[OK]A?", "Changed system config setting '$name' to '$value'");
41
                        OIDplus::logger()->log("[OK]A?", "Changed system config setting '$name' to '$value'");
42
 
42
 
43
                        echo json_encode(array("status" => 0));
43
                        return array("status" => 0);
44
                } else {
44
                } else {
45
                        throw new OIDplusException("Unknown action ID");
45
                        throw new OIDplusException("Unknown action ID");
46
                }
46
                }
47
        }
47
        }
48
 
48