mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 13:31:10 +00:00
Changed:
- convert double-quotes to single
This commit is contained in:
parent
024ccb117f
commit
6bf18b47a8
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ function rendertime_init_1(App $a)
|
|||
|
||||
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, [
|
||||
'$submit' => DI::l10n()->t('Save Settings'),
|
||||
|
@ -53,7 +53,7 @@ function rendertime_page_end(App $a, string &$o)
|
|||
|
||||
$duration = microtime(true) - $profiler->get('start');
|
||||
|
||||
$ignored_modules = ["fbrowser"];
|
||||
$ignored_modules = ['fbrowser'];
|
||||
$ignored = in_array(DI::args()->getModuleName(), $ignored_modules);
|
||||
|
||||
if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {
|
||||
|
|
Loading…
Reference in a new issue