diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-03-08 22:25:38 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-03-08 22:25:38 +0100 |
commit | 5d99e09263a3d3a946eb4920a03fe5ec5bcd3d22 (patch) | |
tree | bce6edea62a0b2af755f7688d388e8cfae7982bf | |
parent | eb91377cd4ecd04bd8bf45e580075c096e88e11f (diff) |
Added the lookshe-hack
-rwxr-xr-x | blogthon.cgi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 6f1331c..eeeb1a0 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -114,7 +114,12 @@ if staticpages == "True": for staticpage in staticpages_list: title = re.sub('\w+?\/\d+?-', '', staticpage) link = re.sub('\w+?\/', '', staticpage) - print ' <a href="?s=' + link + '">' + title + '</a> <br />' + # The ultimative lookshe-hack *g* + if title == "lookshe": + print ' <a href="?s=' + link + '">/me</a> <br />' + else: + print ' <a href="?s=' + link + '">' + title + '</a> <br />' + if monthlist == "True": print ' <br />' print ' </div>' |