MaMa.Killer
เจ้าพ่อบอร์ดเสียว
พลังน้ำใจ: 642
ออฟไลน์
กระทู้: 3,554
|
 |
« ตอบ #8 เมื่อ: 03 เมษายน 2011, 20:00:11 » |
|
บอร์ดหลักไฟล์ BoardIndex.template.php
บอร์ดย่อยไฟล์ MessageIndex.template.php
วิธีแก้เหมือนกัน
หา
// If the board is new, show a strong indicator. if ($board['new']) echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333] , '" title="', $txt[333], '" />'; // This board doesn't have new posts, but its children do. elseif ($board['children_new']) echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333] , '" title="', $txt[333], '" />'; // No new posts at all! The agony!! else echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334] , '" title="', $txt[334], '" />';
แทน
if ($board['new']) echo '<img src="', $settings['images_url'], '/on_', $board['id'], '.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // This board doesn't have new posts, but its children do. elseif ($board['children_new']) echo '<img src="', $settings['images_url'], '/on2_', $board['id'], '.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // No new posts at all! The agony!! else echo '<img src="', $settings['images_url'], '/off_', $board['id'], '.gif" alt="', $txt[334], '" title="', $txt[334], '" />';
|