diff options
author | redmatrix <git@macgirvin.com> | 2016-02-17 00:42:51 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-17 00:42:51 -0800 |
commit | a83eb14ff6f760e0dfd74c61dad128a83c4234bf (patch) | |
tree | 4ee20a0c5b109ff4d945fa321d4508f9c5059436 /include | |
parent | 41ec5403e184fa8526c4d3fd0176e70a5b2b67f1 (diff) | |
download | volse-hubzilla-a83eb14ff6f760e0dfd74c61dad128a83c4234bf.tar.gz volse-hubzilla-a83eb14ff6f760e0dfd74c61dad128a83c4234bf.tar.bz2 volse-hubzilla-a83eb14ff6f760e0dfd74c61dad128a83c4234bf.zip |
iconfig debugging
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 2239510dc..527d55b71 100755 --- a/include/items.php +++ b/include/items.php @@ -2840,7 +2840,7 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) { if($meta) { foreach($meta as $m) { - set_iconfig($current_post,$m['cat'],$m['k'],$m['v']); + set_iconfig($orig_post_id,$m['cat'],$m['k'],$m['v']); } $arr['iconfig'] = $meta; } @@ -4736,7 +4736,7 @@ function fetch_post_tags($items,$link = false) { intval(TERM_OBJ_POST) ); $imeta = q("select * from iconfig where iid in ( %s )", - dbesc($tag_finger_str) + dbesc($tag_finder_str) ); } |