]> git.mjollnir.org Git - moodle.git/commitdiff
Minor mnet keyswap bugfix
authordonal72 <donal72>
Thu, 2 Aug 2007 05:16:59 +0000 (05:16 +0000)
committerdonal72 <donal72>
Thu, 2 Aug 2007 05:16:59 +0000 (05:16 +0000)
mnet/xmlrpc/server.php

index defca4eaaef5783c2d3b00c5fcebcf27d65439a9..d41fb0202b716fe77332eb771707961171f0abda 100644 (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);