diff options
author | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-05-25 00:32:13 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-05-25 00:32:13 +0200 |
commit | 485b4fe81a9cdca7ed7f81f1d30de3f9eec116d3 (patch) | |
tree | 59e0c40502bbd077a6aee7f4251762558a4f8fe2 /blogthon.cgi | |
parent | 334e6687a9e4ccc6ce0e921d5b986e6b27daaafb (diff) |
Entrycounter should work now
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 69cdd48..1554fd8 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -432,7 +432,7 @@ else: content.close() entry_counter += 1 - if not month_display and not post_display and not allentries_display and entry_counter == entries_per_page: # Display pagelist + if not month_display and not post_display and not allentries_display and entry_counter >= entries_per_page: # Display pagelist print ' <div class="entry"><a href=?a=1>View all entries...</a></div>' print ' </div>' |