aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2015-09-14 21:02:52 +0200
committerVirtualTam <virtualtam@flibidi.net>2015-09-14 21:02:52 +0200
commit38bedfbbcdd2a40e9f04f5753e0fd6f4fd513c21 (patch)
tree6fb0d62adee78b7eb019a4df4626b0f7ee2fc5f2 /index.php
parent49e2b35b4a2401d2213a0d3b473713c36ed18fb2 (diff)
downloadShaarli-38bedfbbcdd2a40e9f04f5753e0fd6f4fd513c21.tar.gz
Shaarli-38bedfbbcdd2a40e9f04f5753e0fd6f4fd513c21.tar.zst
Shaarli-38bedfbbcdd2a40e9f04f5753e0fd6f4fd513c21.zip
Bump version to 0.5.4v0.5.4
Fixes: - PHP session IDs: handle hash algorithms and bits per char representations Minor changes: - HTTPS: support being served behing an SSL-enabled proxy - HTTP/Server utilities: refactor & add test coverage Project & documentation: - improve/rewrite `README.md` - update contributor list - update `index.php` header Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 10d767de..c430a200 100755
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
1<?php 1<?php
2/** 2/**
3 * Shaarli v0.5.3 - Shaare your links... 3 * Shaarli v0.5.4 - Shaare your links...
4 * 4 *
5 * The personal, minimalist, super-fast, no-database Delicious clone. 5 * The personal, minimalist, super-fast, no-database Delicious clone.
6 * 6 *
@@ -49,7 +49,7 @@ $GLOBALS['config']['ARCHIVE_ORG'] = false; // For each link, add a link to an ar
49$GLOBALS['config']['ENABLE_RSS_PERMALINKS'] = true; // Enable RSS permalinks by default. This corresponds to the default behavior of shaarli before this was added as an option. 49$GLOBALS['config']['ENABLE_RSS_PERMALINKS'] = true; // Enable RSS permalinks by default. This corresponds to the default behavior of shaarli before this was added as an option.
50$GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false; 50$GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false;
51// ----------------------------------------------------------------------------------------------- 51// -----------------------------------------------------------------------------------------------
52define('shaarli_version','0.5.3'); 52define('shaarli_version', '0.5.4');
53// http://server.com/x/shaarli --> /shaarli/ 53// http://server.com/x/shaarli --> /shaarli/
54define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); 54define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0)));
55 55