1 Commits

Author SHA1 Message Date
3cbf504aed Fixed bug in addCommands 2016-11-01 15:28:03 +01:00

View File

@ -36,7 +36,7 @@ class Context
$handler = [ $this,$handler ]; $handler = [ $this,$handler ];
} }
// Add the command to the command list // Add the command to the command list
$this->addCommand($handler); $this->addCommand($command, $handler);
} }
} }