From 912a6d483b2fc7e87c78da55e58ca20180c17b82 Mon Sep 17 00:00:00 2001
From: Phy <git@phy25.com>
Date: Thu, 21 Dec 2017 18:43:52 +0800
Subject: [PATCH] fix inconsistent use of rawurlencode

---
 inc/parser/xhtml.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 044f0c619..727c82dca 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -889,7 +889,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
         $link['more']   = '';
         $link['class']  = $class;
         if($this->date_at) {
-            $params = $params.'&at='.urlencode($this->date_at);// Not perfect, but it works
+            $params = $params.'&at='.rawurlencode($this->date_at);
         }
         $link['url']    = wl($id, $params);
         $link['name']   = $name;
-- 
GitLab