diff options
author | friendica <info@friendica.com> | 2013-05-08 21:30:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-08 21:30:54 -0700 |
commit | cb0a90d6281a0fef998bfa342612fe47f91a2099 (patch) | |
tree | 71ed1ec0ae1674fb11046cf1b160e6ae32da355a /include/zot.php | |
parent | 51c27579ba79d32c26052c0d1f1218a16315234b (diff) | |
download | volse-hubzilla-cb0a90d6281a0fef998bfa342612fe47f91a2099.tar.gz volse-hubzilla-cb0a90d6281a0fef998bfa342612fe47f91a2099.tar.bz2 volse-hubzilla-cb0a90d6281a0fef998bfa342612fe47f91a2099.zip |
small updates
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index d53148952..f36f15dc5 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1218,6 +1218,7 @@ function import_directory_profile($hash,$profile) { import_directory_keywords($hash,$profile['keywords']); foreach($profile['keywords'] as $kw) { $kw = trim(htmlentities($kw,ENT_COMPAT,'UTF-8',false)); + $kw = trim($kw,','); } $clean[] = $kw; } @@ -1312,7 +1313,7 @@ function import_directory_keywords($hash,$keywords) { } foreach($clean as $x) { if(! in_array($x,$existing)) - $r = q("insert int xtag ( xtag_hash, xtag_term) values ( '%s' ,'%s' )", + $r = q("insert into xtag ( xtag_hash, xtag_term) values ( '%s' ,'%s' )", dbesc($hash), dbesc($x) ); |