summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-03-28 18:10:57 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-03-28 18:10:57 +0000
commit7e6de50232ed7ba74ff7ea33f5fd5c838921bb1f (patch)
tree96d0053e873cc239e7193882c1816ab7aaa997ab
parentccbc63aec4869f64fb68706a6d687aa665a60c9c (diff)
downloadsemanticscuttle-7e6de50232ed7ba74ff7ea33f5fd5c838921bb1f.tar.gz
semanticscuttle-7e6de50232ed7ba74ff7ea33f5fd5c838921bb1f.tar.bz2
fix multiple tags in html export
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@704 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r--www/api/export_html.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/www/api/export_html.php b/www/api/export_html.php
index 8d70927..731b7fb 100644
--- a/www/api/export_html.php
+++ b/www/api/export_html.php
@@ -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;
}