From 4d79698367a83764d06890f127c78e3a843a348b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Gro=C3=9Fe?= Date: Mon, 10 Apr 2017 12:17:46 +0200 Subject: [PATCH] fix urls by actually using & --- tpl/nav-page-tools.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tpl/nav-page-tools.php b/tpl/nav-page-tools.php index 5f97b18..4f6571f 100755 --- a/tpl/nav-page-tools.php +++ b/tpl/nav-page-tools.php @@ -58,7 +58,7 @@ 'style' => 'background-image: none;', ); $svg = __DIR__ . '/../images/tools/FIXME'; - $item = \dokuwiki\template\sprintdoc\tpl::pageToolItem(wl($ID, $params), $odt->getLang('export_odt_button'), $svg, $attr); + $item = \dokuwiki\template\sprintdoc\tpl::pageToolItem(wl($ID, $params, false, '&'), $odt->getLang('export_odt_button'), $svg, $attr); echo '
  • ' . $item . '
  • '; } @@ -76,7 +76,7 @@ 'style' => 'background-image: none;', ); $svg = __DIR__ . '/../images/tools/40-pdf-file.svg'; - $item = \dokuwiki\template\sprintdoc\tpl::pageToolItem(wl($ID, $params), $dw2pdf->getLang('export_pdf_button'), $svg, $attr); + $item = \dokuwiki\template\sprintdoc\tpl::pageToolItem(wl($ID, $params, false, '&'), $dw2pdf->getLang('export_pdf_button'), $svg, $attr); echo '
  • ' . $item . '
  • '; } }