diff options
author | Michael Große <grosse@cosmocode.de> | 2018-03-28 16:08:21 +0200 |
---|---|---|
committer | Michael Große <grosse@cosmocode.de> | 2018-03-28 16:24:58 +0200 |
commit | ec27794f39815492edc60e42de25ed4c5321ff07 (patch) | |
tree | c2f01279ccdceb2b391e0c8fc34de869d6ce539b /inc | |
parent | fc46ed5855537037d3ba45757540b801c96aaa48 (diff) | |
download | dokuwiki-ec27794f39815492edc60e42de25ed4c5321ff07.tar.gz dokuwiki-ec27794f39815492edc60e42de25ed4c5321ff07.zip |
doc(search): parameter must be string or false
Diffstat (limited to 'inc')
-rw-r--r-- | inc/Ui/Search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/Ui/Search.php b/inc/Ui/Search.php index d8c7531f0..47da90655 100644 --- a/inc/Ui/Search.php +++ b/inc/Ui/Search.php @@ -614,9 +614,9 @@ class Search extends Ui /** * create a link to restrict the current query to a namespace * - * @param bool|string $ns the namespace to which to restrict the query + * @param false|string $ns the namespace to which to restrict the query * - * @return bool|string + * @return false|string */ protected function restrictQueryToNSLink($ns) { |