- convert double-quotes to single
pull/1276/head
Roland Häder 2022-07-28 03:53:47 +02:00
parent 024ccb117f
commit 6bf18b47a8
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ function rendertime_init_1(App $a)
function rendertime_addon_admin(App $a, string &$o) function rendertime_addon_admin(App $a, string &$o)
{ {
$t = Renderer::getMarkupTemplate("admin.tpl", "addon/rendertime/"); $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/rendertime/');
$o = Renderer::replaceMacros($t, [ $o = Renderer::replaceMacros($t, [
'$submit' => DI::l10n()->t('Save Settings'), '$submit' => DI::l10n()->t('Save Settings'),
@ -53,7 +53,7 @@ function rendertime_page_end(App $a, string &$o)
$duration = microtime(true) - $profiler->get('start'); $duration = microtime(true) - $profiler->get('start');
$ignored_modules = ["fbrowser"]; $ignored_modules = ['fbrowser'];
$ignored = in_array(DI::args()->getModuleName(), $ignored_modules); $ignored = in_array(DI::args()->getModuleName(), $ignored_modules);
if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) { if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {