1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

Fixes #547 - PM plugin issuse (outbox messages not rendering, outbox count, and outbox date)

This commit is contained in:
Moc
2014-05-18 16:37:11 +02:00
parent bfec4b1a41
commit b6da517bd5
3 changed files with 3 additions and 3 deletions

View File

@@ -620,7 +620,7 @@ class private_message
$qry = "
SELECT SQL_CALC_FOUND_ROWS pm.*, u.user_image, u.user_name FROM #private_msg AS pm
LEFT JOIN #user AS u ON u.user_id = pm.pm_to
WHERE pm.pm_from='{$uid}' AND pm.pm_sent_del=0
WHERE pm.pm_from='{$uid}' AND pm.pm_read_del=0
ORDER BY pm.pm_sent DESC
LIMIT ".$from.', '.$limit;