บางครั้งเราลง mod ไปแล้ว แต่เส้นใต้หรือเส้นขั้นแบ่ง mod อาจจะคลาดเคลื่อนเพราะ Mod บางตัวเรียงไม่เหมือนกัน
จึงทำให้เส้นขั้นไปอยู่ก่อนบ้าง ไปซ้อนกัน2เส้นบ้างสามารถแก้ไขให้ตรงตามที่ต้องการได้
ด้วยการเปิดไฟล์ ./Sources/ManageSettings.php แล้วหาตำแหน่งของโค้ด Mod ที่เราต้องการแก้ไข แล้ววาง '', ตามตำแหน่งที่ต้องการ
โค้ดที่ทำให้เกิดเส้นขั้นคือ
'',ยกตัวอย่าง
// Mod authors, add any settings UNDER this line. Include a comma at the end of the line and don't remove this statement!!
'',
// Show flags
array('select', 'country_flag_ask', array($txt['country_flag_disabled'], $txt['country_flag_profile'], $txt['country_flag_registration'], $txt['country_flag_both'])),
array('check', 'country_flag_required'),
array('check', 'country_flag_show'),
ให้สังเกตุโค้ด
'', ที่อยู่ก่อนจึงทำให้เส้นขั้นไปอยู่ด้านบน ซึ่งไม่ถูกต้อง ความจริงควรจะไปขีดเส้นใต้ขั้นอยู่ด้านล่าง
ยกตัวอย่างหลังวางตำแหน่ง '', ที่ถูกต้อง
[/color]
// Mod authors, add any settings UNDER this line. Include a comma at the end of the line and don't remove this statement!!
// Show flags
array('select', 'country_flag_ask', array($txt['country_flag_disabled'], $txt['country_flag_profile'], $txt['country_flag_registration'], $txt['country_flag_both'])),
array('check', 'country_flag_required'),
array('check', 'country_flag_show'),
'',
credit: http://www.welovethailand.com/webboard/index.php?topic=170.0