diff options
author | Friendika <info@friendika.com> | 2011-02-04 13:40:51 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-04 13:40:51 -0800 |
commit | 8cced061bba8d5ef18e2fa5ead0edcdc90d06e73 (patch) | |
tree | d759998dc61c6157e10f79ffd5159dba9d9afebf | |
parent | 1d0d765344e155086a65b8b56c1c0ec70d9a8a15 (diff) | |
download | volse-hubzilla-8cced061bba8d5ef18e2fa5ead0edcdc90d06e73.tar.gz volse-hubzilla-8cced061bba8d5ef18e2fa5ead0edcdc90d06e73.tar.bz2 volse-hubzilla-8cced061bba8d5ef18e2fa5ead0edcdc90d06e73.zip |
found it - typo
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index bbd9fbb7c..359378ff7 100644 --- a/include/items.php +++ b/include/items.php @@ -751,7 +751,7 @@ function item_store($arr,$force_parent = false) { // Set parent id - and also make sure to inherit the parent's ACL's. $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s', - `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = $d WHERE `id` = %d LIMIT 1", + `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1", intval($parent_id), dbesc($allow_cid), dbesc($allow_gid), |