diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-12-14 23:04:42 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-12-15 00:43:46 +0100 |
commit | f39454ed12018402f38a8f6bf99fc94d676a0a3a (patch) | |
tree | 096e5a5263809359693517a6f90b0d433f6fcd61 /lib/templatelayout.php | |
parent | 8256650da881214e652353c9b79a5ba7964965e5 (diff) | |
download | nextcloud-server-f39454ed12018402f38a8f6bf99fc94d676a0a3a.tar.gz nextcloud-server-f39454ed12018402f38a8f6bf99fc94d676a0a3a.zip |
Fix "Line indented incorrectly"
Diffstat (limited to 'lib/templatelayout.php')
-rw-r--r-- | lib/templatelayout.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 1a0570a270d..87b5620932c 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -97,13 +97,13 @@ class OC_TemplateLayout extends OC_Template { * @param $web base for path * @param $file the filename */ - static public function appendIfExist(&$files, $root, $webroot, $file) { - if (is_file($root.'/'.$file)) { + static public function appendIfExist(&$files, $root, $webroot, $file) { + if (is_file($root.'/'.$file)) { $files[] = array($root, $webroot, $file); return true; - } - return false; - } + } + return false; + } static public function findStylesheetFiles($styles) { // Read the selected theme from the config file |