عرض مشاركة واحدة
احصائياتى

الردود
9

المشاهدات
3449
هيلبرنت
.:: رفيق درب ::.
  • هيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant futureهيلبرنت has a brilliant future

  • هيلبرنت غير متواجد حالياً

المشاركات
11,551

+التقييم
321

تاريخ التسجيل
Jul 2015

الاقامة
فى الدنيا

نظام التشغيل
windows 8

رقم العضوية
18
10-08-2015, 01:04 AM
المشاركة 1
10-08-2015, 01:04 AM
المشاركة 1
افتراضي الكلمات الدلالية التلقائية للمواضيع بدون هاك
في ملف

كود:
includes/functions_newpost.php
ابحث عن :

كود PHP:
if ($type == 'thread' AND $post['taglist'])   { 
استبدله بِـ :


كود:
// 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