X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FLegacyModule.php;h=53f76766044cde16a55f9d17ccd6bbc0f7d2b7d7;hb=d576e920d5c0f02386b51c514bb82c6bbc136875;hp=5f0cc3103cc4f0a7f02ec5ed04ba40b237a52801;hpb=587953582273326dfa1ff744827897e1bf1208c9;p=friendica.git diff --git a/src/LegacyModule.php b/src/LegacyModule.php index 5f0cc3103c..53f7676604 100644 --- a/src/LegacyModule.php +++ b/src/LegacyModule.php @@ -76,11 +76,6 @@ class LegacyModule extends BaseModule $this->runModuleFunction('post'); } - public function afterpost() - { - $this->runModuleFunction('afterpost'); - } - /** * Runs the module function designated by the provided suffix if it exists, the BaseModule method otherwise * @@ -96,7 +91,7 @@ class LegacyModule extends BaseModule $a = DI::app(); return $function_name($a); } else { - return parent::{$function_suffix}($this->parameters); + return parent::{$function_suffix}(); } } }