لجنة التطوير
عضوية تقوم بجلب المواضيع من مواقع اخرى
في ملف
كود:
ابحث عن :
كود PHP:
استبدله بِـ :
كود:
كود:
[COLOR=#ffffff]includes/functions_newpost.php[/COLOR]
ابحث عن :
كود PHP:
كود:
[LEFT][ICODE][COLOR=#000000] [COLOR=#0000BB] [/COLOR][COLOR=#007700]if ([/COLOR][COLOR=#0000BB]$type [/COLOR][COLOR=#007700]== [/COLOR][COLOR=#DD0000]'thread' [/COLOR][COLOR=#007700]AND [/COLOR][COLOR=#0000BB]$post[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'taglist'[/COLOR][COLOR=#007700]]) { [/COLOR][/COLOR][/ICODE][/LEFT]
استبدله بِـ :
كود:
// HACK : START : AUTO TAG // if ($type == 'thread' AND $post['taglist']) if ($type == 'thread') { if (!$post['taglist']) { $temptags = split(' ',$post['title']); $newtags = array(); require(DIR . '/includes/searchwords.php'); foreach ($temptags as $tagtext) { if (strlen($tagtext) <= 3 || in_array(strtolower($tagtext), $badwords)) { // Do nothing } else { array_push($newtags,$tagtext); } } $post['taglist'] = join(',',$newtags); } // HACK : END : AUTO TAG