Compare commits

...

2 Commits

Author SHA1 Message Date
Knah Tsaeb 042095ae7a [upd] change url to new repo 2016-06-08 09:31:51 +02:00
Knah Tsaeb 72944a7234 [fix] encode of date 2016-02-18 17:00:14 +01:00
3 changed files with 9 additions and 9 deletions

View File

@ -61,7 +61,7 @@ myShaarli Features :
* Change date/time format
More information on the project page:
https://forge.leslibres.org/projects/shaarli
https://forge.leslibres.org/Knah-Tsaeb/MyShaarli
Requires php 5.1

View File

@ -33,7 +33,7 @@ $GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty
$GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli.
$GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours
$GLOBALS['config']['UPDATECHECK_URL'] = 'http://book.knah-tsaeb.org/shaarli_version.txt'; // Define last version of myShaarli
$GLOBALS['config']['UPDATECHECK_DOWNLOAD'] = 'https://forge.leslibres.org/projects/shaarli/repository';
$GLOBALS['config']['UPDATECHECK_DOWNLOAD'] = 'https://forge.leslibres.org/Knah-Tsaeb/MyShaarli';
$GLOBALS['config']['ENABLE_UPDATECHECK'] = TRUE;
$GLOBALS['config']['externalThumbshot'] = ''; // Url for external thumbnailer
// exemple : http://images.thumbshots.com/image.aspx?cid=dgdfgdfg&v=1&w=120&url=
@ -54,7 +54,7 @@ if (is_file($GLOBALS['config']['DATADIR'].'/options.php')){
require($GLOBALS['config']['DATADIR'].'/options.php');
}
define('myShaarli_version','1.1.1');
define('myShaarli_version','1.1.2');
define('PHPPREFIX','<?php /* '); // Prefix to encapsulate data in php code.
define('PHPSUFFIX',' */ ?>'); // Suffix to encapsulate data in php code.
// http://server.com/x/shaarli --> /shaarli/
@ -172,14 +172,14 @@ function checkUpdate()
file_put_contents($GLOBALS['config']['UPDATECHECK_FILENAME'],$version); // touch file date
}
// Compare versions:
$newestversion=file_get_contents($GLOBALS['config']['UPDATECHECK_FILENAME']);
if (version_compare(myShaarli_version,$newestversion)==0){
$newestversion=trim(file_get_contents($GLOBALS['config']['UPDATECHECK_FILENAME']));
if (version_compare( strtolower(myShaarli_version), strtolower($newestversion))==0){
return false;
}
if (version_compare(myShaarli_version,$newestversion)==1){
if (version_compare( strtolower(myShaarli_version), strtolower($newestversion))==1){
return 'You have future version ?!';
}
if (version_compare(myShaarli_version,$newestversion)==-1){
if (version_compare( strtolower(myShaarli_version), strtolower($newestversion))==-1){
return 'New update of myShaarli available.';
}
return false;
@ -592,7 +592,7 @@ function linkdate2locale($linkdate)
if(empty($GLOBALS['config']['DATE_FORMAT'])){
$GLOBALS['config']['DATE_FORMAT'] = '%c';
}
return utf8_encode(strftime($GLOBALS['config']['DATE_FORMAT'],linkdate2timestamp($linkdate))); // %c is for automatic date format according to locale.
return strftime($GLOBALS['config']['DATE_FORMAT'],linkdate2timestamp($linkdate)); // %c is for automatic date format according to locale.
// Note that if you use a local which is not installed on your webserver,
// the date will not be displayed in the chosen locale, but probably in US notation.
}

View File

@ -1 +1 @@
1.1.1
1.1.2