Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-10-22 01:59:17 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-22 01:59:17 +0400
commit3760ca1fd8fe6e62b9480bf88780e70c8e160b90 (patch)
treee42f7f431b95860284a546189f1388b7eea8f428 /core/Filechecks.php
parentb12d4b972d031ebf66d8cfc682757a606e4f06b8 (diff)
Tracker refactor + fix bug in bulk authentication + Cleanup some of Transitions code refs #472
Diffstat (limited to 'core/Filechecks.php')
-rw-r--r--core/Filechecks.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Filechecks.php b/core/Filechecks.php
index acf09fb840..0ab5e79334 100644
--- a/core/Filechecks.php
+++ b/core/Filechecks.php
@@ -186,11 +186,11 @@ class Filechecks
$message = "Please check that the web server has enough permission to write to these files/directories:<br />";
if (SettingsServer::isWindows()) {
- $message .= "On Windows, check that the folder is not read only and is writable.
+ $message .= "On Windows, check that the folder is not read only and is writable.\n
You can try to execute:<br />";
} else {
$message .= "For example, on a Linux server if your Apache httpd user
- is www-data, you can try to execute:<br />"
+ is www-data, you can try to execute:<br />\n"
. "<code>chown -R www-data:www-data " . $path . "</code><br />";
}
@@ -208,7 +208,7 @@ class Filechecks
private static function getMakeWritableCommand($realpath)
{
if (SettingsServer::isWindows()) {
- return "<code>cacls $realpath /t /g " . get_current_user() . ":f</code><br />";
+ return "<code>cacls $realpath /t /g " . get_current_user() . ":f</code><br />\n";
}
return "<code>chmod -R 0755 $realpath</code><br />";
}