oh thanks didn't see that
i guess, i'll only know if i test the second one then
but what about the first one the
PHP Code:
// display 3 entries per users on most recent entries panel
$j_limit = e.userid = u.userid AND e.userid = j.userid LIMIT 3
$journal_recent_entries = $DB_site->query("SELECT j.enabled, u.username, e.journalid, e.title, e.entry, e.timestamp, e.userid
FROM journal_entry e, journal j, user u
WHERE $j_limit
AND e.private = 0 AND j.enabled = 1
ORDER BY e.timestamp DESC
LIMIT 23");