X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FPhoto.php;h=34ee4db83324c229d54d1a0d943be3d13c4f75f2;hb=0f932ae723c8b97a1889b9d77a52da3fe7f8b2b3;hp=9987c38f517041224be88a2895ed961e0b83dbb9;hpb=f2c31ef1c0e92208b58d22791fc72d0ad3e3d6ae;p=friendica.git diff --git a/src/Module/Photo.php b/src/Module/Photo.php index 9987c38f51..34ee4db833 100644 --- a/src/Module/Photo.php +++ b/src/Module/Photo.php @@ -6,26 +6,25 @@ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\System; +use Friendica\DI; use Friendica\Model\Photo as MPhoto; -use Friendica\Object\Image; /** - * @brief Photo Module + * Photo Module */ class Photo extends BaseModule { /** - * @brief Module initializer + * Module initializer * * Fetch a photo or an avatar, in optional size, check for permissions and * return the image */ public static function init(array $parameters = []) { - $a = self::getApp(); + $a = DI::app(); // @TODO: Replace with parameter from router if ($a->argc <= 1 || $a->argc > 4) { throw new \Friendica\Network\HTTPException\BadRequestException(); @@ -84,7 +83,7 @@ class Photo extends BaseModule if (is_null($img) || !$img->isValid()) { Logger::log("Invalid photo with id {$photo["id"]}."); - throw new \Friendica\Network\HTTPException\InternalServerErrorException(L10n::t('Invalid photo with id %s.', $photo["id"])); + throw new \Friendica\Network\HTTPException\InternalServerErrorException(DI::l10n()->t('Invalid photo with id %s.', $photo["id"])); } // if customsize is set and image is not a gif, resize it