From be6d81efde42334e2869557b85791cefa06b5872 Mon Sep 17 00:00:00 2001 From: ruan <2369127-ruany@users.noreply.gitlab.com> Date: Tue, 18 Aug 2020 16:59:20 +0200 Subject: [PATCH] Use undashed UUIDs in history pager --- history.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/history.php b/history.php index d74b46f..c4ea1e7 100644 --- a/history.php +++ b/history.php @@ -225,6 +225,7 @@ try { if ($page->settings->show_pager) { $page->name = "history"; $target = null; + $uuid = $page->uuid_undashify($uuid); if ($staffhistory) { // $args .= "&staffhistory=1"; @@ -234,7 +235,7 @@ try { $args = "?uuid=$uuid"; if ($page->settings->simple_urls) { - $target = $page->name . "/$uuid"; + $target = $page->name . "/" . $uuid; $args = ""; }