summaryrefslogtreecommitdiff
path: root/ikiwiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-12 20:47:26 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-12 20:47:26 +0000
commit7e2240481c1d17de8674f0e2d04c41b7d60260be (patch)
tree87d07c23e89cc95e2dab9e599fe9bb678236bd86 /ikiwiki
parent9be36eaa90a41b6ac2a6b8b5c7b2dafd45accfde (diff)
hmm..
Diffstat (limited to 'ikiwiki')
-rwxr-xr-xikiwiki4
1 files changed, 3 insertions, 1 deletions
diff --git a/ikiwiki b/ikiwiki
index a6860f248..84c7a2513 100755
--- a/ikiwiki
+++ b/ikiwiki
@@ -1033,7 +1033,9 @@ sub cgi_editpage ($$) { #{{{
refresh();
}
- print $q->redirect("$url/".htmlpage($page));
+ # The trailing question mark tries to avoid broken
+ # caches and get the most recent version of the page.
+ print $q->redirect("$url/".htmlpage($page)."?");
}
} #}}}