aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2014-12-16 19:52:06 +0100
committernodiscc <nodiscc@gmail.com>2014-12-16 19:52:06 +0100
commit60b83e7cf763be3a68529f1d945710edaeb87967 (patch)
tree37f147852c3f163b76553961fb67c07e5f603e82
parent712501812b6f927b048b9d7f767cb15a370b3c81 (diff)
downloadShaarli-60b83e7cf763be3a68529f1d945710edaeb87967.tar.gz
Shaarli-60b83e7cf763be3a68529f1d945710edaeb87967.tar.zst
Shaarli-60b83e7cf763be3a68529f1d945710edaeb87967.zip
fix quoting error introduced in 712501812b6f927b048b9d7f767cb15a370b3c81
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 4bbd902f..02a6725f 100644
--- a/index.php
+++ b/index.php
@@ -89,7 +89,7 @@ header("Cache-Control: post-check=0, pre-check=0", false);
89header("Pragma: no-cache"); 89header("Pragma: no-cache");
90 90
91// Directories creations (Note that your web host may require different rights than 705.) 91// Directories creations (Note that your web host may require different rights than 705.)
92if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory.').</pre>'); 92if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory.</pre>');
93 93
94// Handling of old config file which do not have the new parameters. 94// Handling of old config file which do not have the new parameters.
95if (empty($GLOBALS['title'])) $GLOBALS['title']='Shared links on '.htmlspecialchars(indexUrl()); 95if (empty($GLOBALS['title'])) $GLOBALS['title']='Shared links on '.htmlspecialchars(indexUrl());