X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FBaseModule.php;h=1dbf3f38d5245fb890eb686169787814c0e0f81c;hb=19f2a998d228c1485219c0e31af3eb35b38eef7f;hp=a993a95ad80b31ba3883992cb01d09477ab7d4aa;hpb=0a4119adaf6294bf43d135a0f435c1dd677c50e0;p=friendica.git diff --git a/src/BaseModule.php b/src/BaseModule.php index a993a95ad8..1dbf3f38d5 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -1,8 +1,26 @@ . + * + */ namespace Friendica; -use Friendica\Core\L10n; use Friendica\Core\Logger; /** @@ -62,8 +80,7 @@ abstract class BaseModule */ public static function post(array $parameters = []) { - // $a = self::getApp(); - // $a->internalRedirect('module'); + // DI::baseurl()->redirect('module'); } /** @@ -130,7 +147,7 @@ abstract class BaseModule public static function getFormSecurityStandardErrorMessage() { - return L10n::t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL; + return DI::l10n()->t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL; } public static function checkFormSecurityTokenRedirectOnError($err_redirect, $typename = '', $formname = 'form_security_token')