diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-09-14 21:02:52 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-09-14 21:02:52 +0200 |
commit | 38bedfbbcdd2a40e9f04f5753e0fd6f4fd513c21 (patch) | |
tree | 6fb0d62adee78b7eb019a4df4626b0f7ee2fc5f2 /index.php | |
parent | 49e2b35b4a2401d2213a0d3b473713c36ed18fb2 (diff) | |
download | Shaarli-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-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | // ----------------------------------------------------------------------------------------------- |
52 | define('shaarli_version','0.5.3'); | 52 | define('shaarli_version', '0.5.4'); |
53 | // http://server.com/x/shaarli --> /shaarli/ | 53 | // http://server.com/x/shaarli --> /shaarli/ |
54 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); | 54 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); |
55 | 55 | ||