]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
fix quoting error introduced in 712501812b6f927b048b9d7f767cb15a370b3c81
authornodiscc <nodiscc@gmail.com>
Tue, 16 Dec 2014 18:52:06 +0000 (19:52 +0100)
committernodiscc <nodiscc@gmail.com>
Tue, 16 Dec 2014 18:52:06 +0000 (19:52 +0100)
index.php

index 4bbd902f3a8c5bdbbd8f8b8798a21495f2cdaae6..02a6725f918767b8164e91f2d5aa5a877d35a0c5 100644 (file)
--- a/index.php
+++ b/index.php
@@ -89,7 +89,7 @@ header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
 
 // Directories creations (Note that your web host may require different rights than 705.)
-if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory.').</pre>');
+if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory.</pre>');
 
 // Handling of old config file which do not have the new parameters.
 if (empty($GLOBALS['title'])) $GLOBALS['title']='Shared links on '.htmlspecialchars(indexUrl());