diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-08-29 09:41:54 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-08-29 09:41:54 +0200 |
commit | 272000286c073349cd0ba898df00c4fe81492461 (patch) | |
tree | 06ee64b03e2b7ecb21b302f7d0bed0e4f39701fd | |
parent | 396c218f61d8626a516941cd6cd66f09e528e32c (diff) | |
download | rpg-272000286c073349cd0ba898df00c4fe81492461.tar.gz rpg-272000286c073349cd0ba898df00c4fe81492461.tar.bz2 |
added missing keeptxt option to universal search FS#2014
-rw-r--r-- | inc/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/search.php b/inc/search.php index 322c53e25..ea8897662 100644 --- a/inc/search.php +++ b/inc/search.php @@ -549,7 +549,7 @@ function search_universal(&$data,$base,$file,$type,$lvl,$opts){ $return = true; // get ID and check if it is a valid one - $item['id'] = pathID($file); + $item['id'] = pathID($file,$opts['keeptxt']); if($item['id'] != cleanID($item['id'])){ if($opts['showmsg']) msg(hsc($item['id']).' is not a valid file name for DokuWiki - skipped',-1); |