]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
FavoritePlugin calls CommandInterpreter::split_arg
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 7 Nov 2014 15:23:47 +0000 (16:23 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 7 Nov 2014 15:24:14 +0000 (16:24 +0100)
The last commit found a bug that a previous move of the FavCommand
into a plugin called $this in FavoritePlugin instead of the instance
of a CommandInterpreter class. Now that call is statically defined in
CommandInterpreter and appropriately called in FavoritePlugin.

plugins/Favorite/FavoritePlugin.php

index d06153965eb087967c263e41d49c661250ec4760..a9a95f80cc9da746c37672af90f70f188fad87fd 100644 (file)
@@ -393,7 +393,7 @@ class FavoritePlugin extends ActivityHandlerPlugin
             if (empty($arg)) {
                 $result = null;
             } else {
-                list($other, $extra) = $this->split_arg($arg);
+                list($other, $extra) = CommandInterpreter::split_arg($arg);
                 if (!empty($extra)) {
                     $result = null;
                 } else {