MyBB.de Forum

Normale Version: Problem mit multiquote
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Das wäre dann dieser Block in der newreply.php, wo noch "ORDER BY p.dateline" hinzugefügt werden müsste
PHP-Code:
            require_once MYBB_ROOT."inc/functions_posting.php";
            
$query $db->query("
                SELECT p.subject, p.message, p.pid, p.tid, p.username, p.dateline, u.username AS userusername
                FROM "
.TABLE_PREFIX."posts p
                LEFT JOIN "
.TABLE_PREFIX."threads t ON (t.tid=p.tid)
                LEFT JOIN "
.TABLE_PREFIX."users u ON (u.uid=p.uid)
                WHERE p.pid IN (
$quoted_posts{$unviewable_forums} {$visible_where}
            "
); 
Ja, sieht so aus. Wink
Seiten: 1 2