diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-09 13:45:37 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-09 13:45:37 +0100 |
commit | 988a67fc9acfd280e8e96ac353ddfd89192dbab0 (patch) | |
tree | 1b0f5658a6131af4f7b033641618c9ed69a2aaa2 /lib/util.php | |
parent | 0629ff4dd91b488bd98c35eeff24c5fea50fc30d (diff) | |
download | nextcloud-server-988a67fc9acfd280e8e96ac353ddfd89192dbab0.tar.gz nextcloud-server-988a67fc9acfd280e8e96ac353ddfd89192dbab0.zip |
remove remaining br-tags that do not belong here
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 47c02074a8c..d8adfd99a47 100755 --- a/lib/util.php +++ b/lib/util.php @@ -211,7 +211,7 @@ class OC_Util { ."'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); } } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { - $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud<br/>', + $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud', 'hint'=>$permissionsHint); } else { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); @@ -309,7 +309,7 @@ class OC_Util { clearstatcache(); $prems = substr(decoct(@fileperms($dataDirectory)), -3); if (substr($prems, 2, 1) != '0') { - $errors[] = array('error' => 'Data directory ('.$dataDirectory.') is readable for other users<br/>', + $errors[] = array('error' => 'Data directory ('.$dataDirectory.') is readable for other users', 'hint' => $permissionsModHint); } } |