summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)."?");
}
} #}}}