From 3dcb36b4caa04bcf313ef95e7ccfce6acf06e3fe Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 6 Dec 2015 07:40:20 -0500 Subject: [PATCH] Apparently, variable interpolation also suffers from an unneeded memory copy Signed-off-by: Marc Delisle --- libraries/Theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Theme.php b/libraries/Theme.php index 2f826416bb..0762cce155 100644 --- a/libraries/Theme.php +++ b/libraries/Theme.php @@ -355,10 +355,10 @@ class Theme . ThemeManager::FALLBACK_THEME . "/css/$file.css.php"; if (is_readable($path)) { - echo "\n/* FILE: $file.css.php */\n"; + echo "\n/* FILE: " , $file , ".css.php */\n"; include $path; } else if (is_readable($fallback)) { - echo "\n/* FILE: $file.css.php */\n"; + echo "\n/* FILE: " , $file , ".css.php */\n"; include $fallback; } else { $success = false;