aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xblogthon.cgi7
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 ' &nbsp;<a href="?s=' + link + '">' + title + '</a>&nbsp;<br />'
+ # The ultimative lookshe-hack *g*
+ if title == "lookshe":
+ print ' &nbsp;<a href="?s=' + link + '">/me</a>&nbsp;<br />'
+ else:
+ print ' &nbsp;<a href="?s=' + link + '">' + title + '</a>&nbsp;<br />'
+
if monthlist == "True": print ' <br />'
print ' </div>'