diff options
author | nodiscc <nodiscc@gmail.com> | 2014-10-20 13:59:44 +0200 |
---|---|---|
committer | nodiscc <nodiscc@gmail.com> | 2014-10-20 13:59:44 +0200 |
commit | c4a329ede2d19d3a9431334176d9bebf35d6bb96 (patch) | |
tree | 594c355a75c7b4552b23829e6687805e65e47c80 | |
parent | ea8f67eb49c9d63bb06ec29d5a5ec7ba75761c21 (diff) | |
parent | 2f2aa06b956b2942195fc7ba573f5921386b6708 (diff) | |
download | Shaarli-c4a329ede2d19d3a9431334176d9bebf35d6bb96.tar.gz Shaarli-c4a329ede2d19d3a9431334176d9bebf35d6bb96.tar.zst Shaarli-c4a329ede2d19d3a9431334176d9bebf35d6bb96.zip |
Merge pull request #27 from virtualtam/master
fix: add missing slash when defining RainTPL's temp dir
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,8 +26,8 @@ $GLOBALS['config']['CACHEDIR'] = 'cache'; // Cache directory for thumbnails for | |||
26 | $GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory. | 26 | $GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory. |
27 | $GLOBALS['config']['ENABLE_LOCALCACHE'] = true; // Enable Shaarli to store thumbnail in a local cache. Disable to reduce web space usage. | 27 | $GLOBALS['config']['ENABLE_LOCALCACHE'] = true; // Enable Shaarli to store thumbnail in a local cache. Disable to reduce web space usage. |
28 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. | 28 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. |
29 | $GLOBALS['config']['RAINTPL_TMP'] = 'tmp' ; // Raintpl cache directory | 29 | $GLOBALS['config']['RAINTPL_TMP'] = 'tmp/' ; // Raintpl cache directory (keep the trailing slash!) |
30 | $GLOBALS['config']['RAINTPL_TPL'] = 'tpl/' ; // Raintpl template directory (keep the trailling slash!) | 30 | $GLOBALS['config']['RAINTPL_TPL'] = 'tpl/' ; // Raintpl template directory (keep the trailing slash!) |
31 | $GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli. | 31 | $GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli. |
32 | $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours | 32 | $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours |
33 | // Note: You must have publisher.php in the same directory as Shaarli index.php | 33 | // Note: You must have publisher.php in the same directory as Shaarli index.php |