From cb0a90d6281a0fef998bfa342612fe47f91a2099 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 8 May 2013 21:30:54 -0700 Subject: small updates --- include/config.php | 4 ++-- include/plugin.php | 6 +++--- include/zot.php | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/config.php b/include/config.php index 9b36b1a1e..5db0a3d05 100644 --- a/include/config.php +++ b/include/config.php @@ -17,8 +17,8 @@ function load_config($family) { global $a; - $r = q("SELECT * FROM `config` WHERE `cat` = '%s'", dbesc($family)); - if(count($r)) { + $r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family)); + if($r) { foreach($r as $rr) { $k = $rr['k']; if ($family === 'config') { diff --git a/include/plugin.php b/include/plugin.php index 31427e117..79f6ed9c7 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -169,7 +169,7 @@ function register_hook($hook,$file,$function,$priority=0) { function unregister_hook($hook,$file,$function) { - $r = q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1", + $r = q("DELETE FROM hook WHERE hook = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1", dbesc($hook), dbesc($file), dbesc($function) @@ -187,8 +187,8 @@ function unregister_hook($hook,$file,$function) { function load_hooks() { $a = get_app(); $a->hooks = array(); - $r = q("SELECT * FROM `hook` WHERE 1 ORDER BY `priority` DESC"); - if(count($r)) { + $r = q("SELECT * FROM hook WHERE true ORDER BY priority DESC"); + if($r) { foreach($r as $rr) { if(! array_key_exists($rr['hook'],$a->hooks)) $a->hooks[$rr['hook']] = array(); 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) ); -- cgit v1.2.3