diff options
-rw-r--r-- | inc/template.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/template.php b/inc/template.php index ab6aa925f..d007f47ef 100644 --- a/inc/template.php +++ b/inc/template.php @@ -580,7 +580,7 @@ function tpl_get_action($type) { $accesskey = 'v'; } }else{ - $params = ''; + $params = array(); $type = 'show'; $accesskey = 'v'; } @@ -597,7 +597,7 @@ function tpl_get_action($type) { break; case 'top': $accesskey = 'x'; - $params = ''; + $params = array(); $id = '#dokuwiki__top'; break; case 'back': @@ -606,7 +606,7 @@ function tpl_get_action($type) { return false; } $id = $parent; - $params = ''; + $params = array(); $accesskey = 'b'; break; case 'login': |