fix multiple tags in html export
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@704 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
ccbc63aec4
commit
7e6de50232
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ $bookmarkservice = SemanticScuttle_Service_Factory::get('Bookmark');
|
|||
|
||||
// Check to see if a tag was specified.
|
||||
if (isset($_REQUEST['tag']) && (trim($_REQUEST['tag']) != '')) {
|
||||
$tag = trim($_REQUEST['tag']);
|
||||
//$_GET vars have + replaced to " " automatically
|
||||
$tag = str_replace(' ', '+', trim($_REQUEST['tag']));
|
||||
} else {
|
||||
$tag = null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue