diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-08-18 00:35:42 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-08-18 00:36:55 +0200 |
commit | d7efade5d651ec60a05a86baa53f99188ad5d72c (patch) | |
tree | de32c4b3f2f874046af87223f348c2b796316b48 /index.php | |
parent | 6335a0fc0ce0c2f962333f0b4d6baac1671df901 (diff) | |
download | Shaarli-d7efade5d651ec60a05a86baa53f99188ad5d72c.tar.gz Shaarli-d7efade5d651ec60a05a86baa53f99188ad5d72c.tar.zst Shaarli-d7efade5d651ec60a05a86baa53f99188ad5d72c.zip |
Bump version to 0.5.1v0.5.1
Minor changes
- fix 404 after editing a link while being logged out
- update local documentation
- improve timezone detection at installation
- improve feed cache handling
- improve URL cleanup for new links
- add a link to the shaarli/shaarli DockerHub repository
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,5 +1,5 @@ | |||
1 | <?php | 1 | <?php |
2 | // Shaarli 0.5.0 - Shaare your links... | 2 | // Shaarli 0.5.1 - Shaare your links... |
3 | // The personal, minimalist, super-fast, no-database Delicious clone. By sebsauvage.net | 3 | // The personal, minimalist, super-fast, no-database Delicious clone. By sebsauvage.net |
4 | // http://sebsauvage.net/wiki/doku.php?id=php:shaarli | 4 | // http://sebsauvage.net/wiki/doku.php?id=php:shaarli |
5 | // Licence: http://www.opensource.org/licenses/zlib-license.php | 5 | // Licence: http://www.opensource.org/licenses/zlib-license.php |
@@ -39,7 +39,7 @@ $GLOBALS['config']['ARCHIVE_ORG'] = false; // For each link, add a link to an ar | |||
39 | $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. | 39 | $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. |
40 | $GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false; | 40 | $GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false; |
41 | // ----------------------------------------------------------------------------------------------- | 41 | // ----------------------------------------------------------------------------------------------- |
42 | define('shaarli_version','0.5.0'); | 42 | define('shaarli_version','0.5.1'); |
43 | // http://server.com/x/shaarli --> /shaarli/ | 43 | // http://server.com/x/shaarli --> /shaarli/ |
44 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); | 44 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); |
45 | 45 | ||