aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2012-01-21 03:09:21 +0100
committerStefan Ritter <xeno@thehappy.de>2012-01-21 03:09:21 +0100
commitbd029f4b8c0db2885d5e5f7d4f6d60302af7a6e2 (patch)
tree5c2e260dea393820e1e45d866123fd5c2c42e74e
parentae794083b2caae0551bfa357594a7a27e684bd58 (diff)
Ignore entries_counter when showing tags
-rwxr-xr-xblogthon.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index 786db74..f46c311 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -623,7 +623,7 @@ else:
if month_display == date_to_compare or not month_display:
if post_display == title.replace(" ", "-") or not post_display:
- if allentries_display == "1" or entry_counter < entries_per_page:
+ if allentries_display == "1" or entry_counter < entries_per_page or tag_display != "":
if utf8:
content = open(entry, "r", encoding="utf8")
else: