diff options
Diffstat (limited to 'lib/private/TemplateLayout.php')
-rw-r--r-- | lib/private/TemplateLayout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index 52c60e58991..b99c62731fe 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -284,7 +284,7 @@ class TemplateLayout extends \OC_Template { } else { $suffix = $this->getVersionHashSuffix($web, $file); - if (strpos($file, '?v=') == false) { + if (!strpos($file, '?v=')) { $this->append('cssfiles', $web.'/'.$file . $suffix); } else { $this->append('cssfiles', $web.'/'.$file . '-' . substr($suffix, 3)); |