diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-08-31 20:36:13 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-08-31 20:39:27 +0200 |
commit | 53cc2b93b85a080c6c06bc3633fb454241fc5699 (patch) | |
tree | ad928289cc81c081982fe9dffddd9e464dce0e57 | |
parent | 6211c498f6e0bdc6d86152e9777bcc75955a5ec4 (diff) | |
download | Shaarli-0.5.2.tar.gz Shaarli-0.5.2.tar.zst Shaarli-0.5.2.zip |
Bump version to 0.5.2v0.5.2
Minor changes
- fix Full Path Disclosure upon cookie forgery
- fix regression preventing to load LinkDB info when adding an existing link
- also extract HTTPS page metadata (title)
- add PHP 7 to Travis platforms
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
-rwxr-xr-x | index.php | 4 | ||||
-rw-r--r-- | shaarli_version.php | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | <?php | 1 | <?php |
2 | // Shaarli 0.5.1 - Shaare your links... | 2 | // Shaarli 0.5.2 - 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.1'); | 42 | define('shaarli_version','0.5.2'); |
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 | ||
diff --git a/shaarli_version.php b/shaarli_version.php index 294292a1..6b72466a 100644 --- a/shaarli_version.php +++ b/shaarli_version.php | |||
@@ -1 +1 @@ | |||
<?php /* 0.5.1 */ ?> | <?php /* 0.5.2 */ ?> | ||