diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
commit | 0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (patch) | |
tree | 538076bdc23be31e88ba012aa4f26448c8fd1ca3 /lib/template.php | |
parent | 1205749f8cec19c30c9f58f7f97832fac9a4c502 (diff) | |
download | nextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.tar.gz nextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.zip |
Checkstyle: Fix the last 25 NoSpaceAfterComma
Diffstat (limited to 'lib/template.php')
-rw-r--r-- | lib/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/template.php b/lib/template.php index efcc6e82c4c..3d3589abd1e 100644 --- a/lib/template.php +++ b/lib/template.php @@ -199,7 +199,7 @@ class OC_Template{ $mode='tablet'; }elseif(stripos($_SERVER['HTTP_USER_AGENT'], 'iphone')>0) { $mode='mobile'; - }elseif((stripos($_SERVER['HTTP_USER_AGENT'],'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'], 'nokia')>0)) { + }elseif((stripos($_SERVER['HTTP_USER_AGENT'], 'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'], 'nokia')>0)) { $mode='mobile'; }else{ $mode='default'; |