edit post broke with recent checkin
This commit is contained in:
parent
309fdce151
commit
e0e3cc7a72
2 changed files with 4 additions and 4 deletions
2
README
2
README
|
@ -38,7 +38,7 @@ contacts.
|
||||||
They may include most any service which provides a syndication feed (both RSS
|
They may include most any service which provides a syndication feed (both RSS
|
||||||
and Atom). This allows you to view communications from friends in other
|
and Atom). This allows you to view communications from friends in other
|
||||||
diverse social networks - such as Diaspora, Google Buzz, and millions of
|
diverse social networks - such as Diaspora, Google Buzz, and millions of
|
||||||
Wordpress blogs, news services, and other websites. You can also import
|
blogs, news services, and other websites. You can also import
|
||||||
contacts from (and write to) anybody that is accessible from your email
|
contacts from (and write to) anybody that is accessible from your email
|
||||||
INBOX and view them in your social stream. Over time we will try to
|
INBOX and view them in your social stream. Over time we will try to
|
||||||
build two-way bridges to other services so that you can freely
|
build two-way bridges to other services so that you can freely
|
||||||
|
|
|
@ -18,12 +18,12 @@ function editpost_content(&$a) {
|
||||||
return;
|
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($post_id),
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
|
|
||||||
if(! count($r)) {
|
if(! count($itm)) {
|
||||||
notice( t('Item not found') . EOL);
|
notice( t('Item not found') . EOL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -94,7 +94,7 @@ function editpost_content(&$a) {
|
||||||
'$noloc' => t('Clear browser location'),
|
'$noloc' => t('Clear browser location'),
|
||||||
'$wait' => t('Please wait'),
|
'$wait' => t('Please wait'),
|
||||||
'$permset' => t('Permission settings'),
|
'$permset' => t('Permission settings'),
|
||||||
'$content' => $r[0]['body'],
|
'$content' => $itm[0]['body'],
|
||||||
'$post_id' => $post_id,
|
'$post_id' => $post_id,
|
||||||
'$baseurl' => $a->get_baseurl(),
|
'$baseurl' => $a->get_baseurl(),
|
||||||
'$defloc' => $a->user['default-location'],
|
'$defloc' => $a->user['default-location'],
|
||||||
|
|
Loading…
Reference in a new issue