Minor mnet keyswap bugfix

This commit is contained in:
donal72 2007-08-02 05:16:59 +00:00
parent c4a71837f3
commit 4fc66605f2

View File

@ -366,7 +366,7 @@ function mnet_server_dispatch($payload) {
exit(mnet_server_fault(713, 'nosuchfunction'));
}
if(preg_match("/^system./", $method)) {
if(preg_match("/^system\./", $method)) {
$callstack = explode('.', $method);
} else {
$callstack = explode('/', $method);