X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FLegacyModule.php;h=5ef2a0ee612e30a00fb1fc6722736433dbcb9904;hb=9feab828c88dfdc0c66fef3269f6cdf0122d2840;hp=737101b5c287ac911fa2649344bf41218cf423ba;hpb=9c9ebfc7c97016881d9ad2bb3c3b54a5640d2f08;p=friendica.git diff --git a/src/LegacyModule.php b/src/LegacyModule.php index 737101b5c2..5ef2a0ee61 100644 --- a/src/LegacyModule.php +++ b/src/LegacyModule.php @@ -65,7 +65,8 @@ class LegacyModule extends BaseModule $function_name = static::$moduleName . '_' . $function_suffix; if (\function_exists($function_name)) { - return $function_name(self::getApp()); + $a = self::getApp(); + return $function_name($a); } else { return parent::{$function_suffix}(); }