diff --git a/.gitignore b/.gitignore index 7fefd0f..69a1873 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,10 @@ # Ignore data/, tmp/, cache/ and pagecache/ -data/ -tmp/ -cache/ -pagecache/ +data +tmp +cache +pagecache + +# Eclipse project files +.settings +.buildpath .project -.settings/ diff --git a/index.php b/index.php index 4315cf4..6931edd 100644 --- a/index.php +++ b/index.php @@ -4,6 +4,12 @@ // http://sebsauvage.net/wiki/doku.php?id=php:shaarli // Licence: http://www.opensource.org/licenses/zlib-license.php // Requires: php 5.1.x (but autocomplete fields will only work if you have php 5.2.x) +// ----------------------------------------------------------------------------------------------- +// NEVER TRUST IN PHP.INI +// Some hosts do not define a default timezone in php.ini, +// so we have to do this for avoid the strict standard error. +date_default_timezone_set('UTC'); + // ----------------------------------------------------------------------------------------------- // Hardcoded parameter (These parameters can be overwritten by creating the file /config/options.php) $GLOBALS['config']['DATADIR'] = 'data'; // Data subdirectory @@ -1990,7 +1996,6 @@ function lazyThumbnail($url,$href=false) else $html.=' {include="page.footer"} - + {if="empty($GLOBALS['disablejquery'])"} {/if} + \ No newline at end of file