diff options
author | Seb Sauvage <sebsauvage@sebsauvage.net> | 2012-02-06 17:35:44 +0100 |
---|---|---|
committer | Emilien Klein <emilien@klein.st> | 2012-02-06 17:35:44 +0100 |
commit | a689efafc8260f53ed67fbe5d67e013ea41c3923 (patch) | |
tree | 59c73f7935879c77cdf59d38a0e02db643583250 /tpl/linklist.paging.html | |
parent | a22e60cc0abb0547af8d792dec15f59bf77b5630 (diff) | |
download | Shaarli-legacy.tar.gz Shaarli-legacy.tar.zst Shaarli-legacy.zip |
Version 0.0.38 beta:legacy
- Corrected: Corrected the tag encoding (there was a bug when selecting a second tag which contains accented characters).
- Changed: The “Daily” page now automatically skips empty days.
- Added: Automatic creation of the tmp directory with proper rights (for RainTPL).
- Added: When you click the key to see only private links, it turns yellow.
Diffstat (limited to 'tpl/linklist.paging.html')
-rw-r--r-- | tpl/linklist.paging.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tpl/linklist.paging.html b/tpl/linklist.paging.html index b1f9871f..b0c119d9 100644 --- a/tpl/linklist.paging.html +++ b/tpl/linklist.paging.html | |||
@@ -1,7 +1,13 @@ | |||
1 | <div class="paging"> | 1 | <div class="paging"> |
2 | {if="isLoggedIn()"} | 2 | {if="isLoggedIn()"} |
3 | <div id="paging_privatelinks"> | 3 | <div id="paging_privatelinks"> |
4 | <a href="?privateonly"><img src="images/private_16x16.png#" width="16" height="16" title="See private links only (toggle)" alt="See private links only (toggle)"></a> | 4 | <a href="?privateonly"> |
5 | {if="$privateonly"} | ||
6 | <img src="images/private_16x16_active.png#" width="16" height="16" title="Click to see all links" alt="Click to see all links"> | ||
7 | {else} | ||
8 | <img src="images/private_16x16.png#" width="16" height="16" title="Click to see only private links" alt="Click to see only private links"> | ||
9 | {/if} | ||
10 | </a> | ||
5 | </div> | 11 | </div> |
6 | {/if} | 12 | {/if} |
7 | <div id="paging_linksperpage"> | 13 | <div id="paging_linksperpage"> |