Merge pull request #35 from nodiscc/optional-atom
Make ATOM toolbar button optional
This commit is contained in:
commit
a4355279cb
2 changed files with 4 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
||||||
$GLOBALS['config']['BAN_DURATION'] = 1800; // Ban duration for IP address after login failures (in seconds) (1800 sec. = 30 minutes)
|
$GLOBALS['config']['BAN_DURATION'] = 1800; // Ban duration for IP address after login failures (in seconds) (1800 sec. = 30 minutes)
|
||||||
$GLOBALS['config']['OPEN_SHAARLI'] = false; // If true, anyone can add/edit/delete links without having to login
|
$GLOBALS['config']['OPEN_SHAARLI'] = false; // If true, anyone can add/edit/delete links without having to login
|
||||||
$GLOBALS['config']['HIDE_TIMESTAMPS'] = false; // If true, the moment when links were saved are not shown to users that are not logged in.
|
$GLOBALS['config']['HIDE_TIMESTAMPS'] = false; // If true, the moment when links were saved are not shown to users that are not logged in.
|
||||||
|
$GLOBALS['config']['SHOW_ATOM'] = false; // If true, an extra "ATOM feed" button will be displayed in the toolbar
|
||||||
$GLOBALS['config']['ENABLE_THUMBNAILS'] = true; // Enable thumbnails in links.
|
$GLOBALS['config']['ENABLE_THUMBNAILS'] = true; // Enable thumbnails in links.
|
||||||
$GLOBALS['config']['CACHEDIR'] = 'cache'; // Cache directory for thumbnails for SLOW services (like flickr)
|
$GLOBALS['config']['CACHEDIR'] = 'cache'; // Cache directory for thumbnails for SLOW services (like flickr)
|
||||||
$GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory.
|
$GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory.
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
<a href="?do=login">Login</a>
|
<a href="?do=login">Login</a>
|
||||||
{/if}
|
{/if}
|
||||||
<a href="{$feedurl}?do=rss{$searchcrits}" class="nomobile">RSS Feed</a>
|
<a href="{$feedurl}?do=rss{$searchcrits}" class="nomobile">RSS Feed</a>
|
||||||
|
{if="$GLOBALS['config']['SHOW_ATOM']"}
|
||||||
<a href="{$feedurl}?do=atom{$searchcrits}" style="padding-left:10px;" class="nomobile">ATOM Feed</a>
|
<a href="{$feedurl}?do=atom{$searchcrits}" style="padding-left:10px;" class="nomobile">ATOM Feed</a>
|
||||||
|
{/if}
|
||||||
<a href="?do=tagcloud">Tag cloud</a>
|
<a href="?do=tagcloud">Tag cloud</a>
|
||||||
<a href="?do=picwall{$searchcrits}">Picture wall</a>
|
<a href="?do=picwall{$searchcrits}">Picture wall</a>
|
||||||
<a href="?do=daily">Daily</a>
|
<a href="?do=daily">Daily</a>
|
||||||
|
|
Loading…
Reference in a new issue