diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-03-07 13:50:28 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-03-07 13:51:22 +0100 |
commit | f761993f39c998175218812fd66c28c54f086f3d (patch) | |
tree | cdb20edd2dc0f16cfcc2e3f03925c196bd8f5394 | |
parent | 43eb80d07036d4b0ba54492ac0774328b719bdcd (diff) |
Changes:
* Add configuration to htaccess
* Modify class of all entries link
-rw-r--r-- | .htaccess | 4 | ||||
-rwxr-xr-x | blogthon.cgi | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,6 @@ -Options -Indexes +Options -Indexes ExecCGI +AddHandler cgi-script .cgi +DirectoryIndex blogthon.cgi <Files ~ "^configuration$"> Order allow,deny diff --git a/blogthon.cgi b/blogthon.cgi index ed2ecb2..564459c 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -598,7 +598,7 @@ else: entry_counter += 1 if not month_display and not post_display and not allentries_display and entry_counter == entries_per_page: # Display pagelist - print tab*3 + "<div class=\"entry\"><a href=\"?a=1\">%s</a></div>" % blog_locale[5] + print tab*3 + "<div class=\"show_all\"><a href=\"?a=1\">%s</a></div>" % blog_locale[5] print tab*2 + "</div>" print "" |