Skip to content
Snippets Groups Projects
Commit 912a6d48 authored by Phy's avatar Phy
Browse files

fix inconsistent use of rawurlencode

parent 15d771f7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment