fixed direct message reply in api call.

This commit is contained in:
Sebastian Egbers 2012-06-25 16:25:34 +02:00
parent af1d4bb632
commit 8c251aebc7
1 changed files with 2 additions and 2 deletions

View File

@ -1526,10 +1526,10 @@
$replyto = '';
$sub = '';
if (x($_REQUEST,'replyto')) {
$r = q('SELECT `uri`, `title` FROM `mail` WHERE `uid`=%d AND `id`=%d',
$r = q('SELECT `parent-uri`, `title` FROM `mail` WHERE `uid`=%d AND `id`=%d',
intval(local_user()),
intval($_REQUEST['replyto']));
$replyto = $r[0]['uri'];
$replyto = $r[0]['parent-uri'];
$sub = $r[0]['title'];
}
else {