From e0e3cc7a7235fe129aefb0f9b01f36f2ba8b99d4 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 19 Apr 2011 22:37:17 -0700 Subject: edit post broke with recent checkin --- mod/editpost.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/editpost.php') diff --git a/mod/editpost.php b/mod/editpost.php index 16acc76e1..3c92e8bbe 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -18,12 +18,12 @@ function editpost_content(&$a) { return; } - $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", + $itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($post_id), intval(local_user()) ); - if(! count($r)) { + if(! count($itm)) { notice( t('Item not found') . EOL); return; } @@ -94,7 +94,7 @@ function editpost_content(&$a) { '$noloc' => t('Clear browser location'), '$wait' => t('Please wait'), '$permset' => t('Permission settings'), - '$content' => $r[0]['body'], + '$content' => $itm[0]['body'], '$post_id' => $post_id, '$baseurl' => $a->get_baseurl(), '$defloc' => $a->user['default-location'], -- cgit v1.2.3