]> git.mxchange.org Git - friendica-addons.git/commitdiff
Remove deprecated App::module - replace with DI::module()->getName()
authornupplaPhil <admin@philipp.info>
Mon, 16 Dec 2019 00:35:25 +0000 (01:35 +0100)
committernupplaPhil <admin@philipp.info>
Fri, 27 Dec 2019 20:55:19 +0000 (21:55 +0100)
rendertime/rendertime.php

index 31025dcec417ff740e92b599e8630fd7ff343b6d..505bceca59d1afc7f431acd00579acd8eb5b10f3 100644 (file)
@@ -36,7 +36,7 @@ function rendertime_page_end(Friendica\App $a, &$o)
        $duration = microtime(true) - $profiler->get('start');
 
        $ignored_modules = ["fbrowser"];
-       $ignored = in_array($a->module, $ignored_modules);
+       $ignored = in_array(DI::module()->getName(), $ignored_modules);
 
        if (is_site_admin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {