diff options
author | friendica <info@friendica.com> | 2012-10-01 18:02:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-01 18:02:11 -0700 |
commit | 846a9813b23911ae2a87d87fb6fd9f188ed84dc0 (patch) | |
tree | a8a78b379cc8f4e25812c5b2cac603c86b6b1472 /include/text.php | |
parent | d261fe271fdee747244c76f7ba4679b8372a2e8c (diff) | |
download | volse-hubzilla-846a9813b23911ae2a87d87fb6fd9f188ed84dc0.tar.gz volse-hubzilla-846a9813b23911ae2a87d87fb6fd9f188ed84dc0.tar.bz2 volse-hubzilla-846a9813b23911ae2a87d87fb6fd9f188ed84dc0.zip |
here's where the heavy lifting begins - everything is likely to be broken for quite some time as we add location and db independence to items and conversations and work through the rest of the permissions and how to federate the buggers.
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 61c7e6389..d0ad414fa 100644 --- a/include/text.php +++ b/include/text.php @@ -378,7 +378,7 @@ function photo_new_resource() { do { $found = false; $resource = hash('md5',uniqid(mt_rand(),true)); - $r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `photo` WHERE `resource_id` = '%s' LIMIT 1", dbesc($resource) ); if(count($r)) @@ -1325,7 +1325,7 @@ function reltoabs($text, $base) function item_post_type($item) { if(intval($item['event-id'])) return t('event'); - if(strlen($item['resource-id'])) + if(strlen($item['resource_id'])) return t('photo'); if(strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST) return t('activity'); |