diff options
author | Friendika <info@friendika.com> | 2011-10-13 01:00:06 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-13 01:00:06 -0700 |
commit | 2911bf9434cb1a061ff32d41894ee0dd09ed3993 (patch) | |
tree | dee7dfc7d2995e6e0292d6f9968eff7d82c46224 /include/items.php | |
parent | ac3a6d1d1ed8f322bd14e2675a07ab1836d83a85 (diff) | |
download | volse-hubzilla-2911bf9434cb1a061ff32d41894ee0dd09ed3993.tar.gz volse-hubzilla-2911bf9434cb1a061ff32d41894ee0dd09ed3993.tar.bz2 volse-hubzilla-2911bf9434cb1a061ff32d41894ee0dd09ed3993.zip |
sql issue item_store
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 2c23c6f1b..36851b01f 100644 --- a/include/items.php +++ b/include/items.php @@ -818,14 +818,14 @@ function item_store($arr,$force_parent = false) { // find the item we just created - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1 ORDER BY `id` ASC", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1", $arr['uri'], // already dbesc'd intval($arr['uid']) ); if(! count($r)) { // This is not good, but perhaps we encountered a rare race/cache condition, so back off and try again. sleep(3); - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1 ORDER BY `id` ASC", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1", $arr['uri'], // already dbesc'd intval($arr['uid']) ); |