أهلا وسهلا بك زائرنا الكريم في منتدى دعم PBBoard الرسمي، لكي تتمكن من المشاركة ومشاهدة جميع أقسام المنتدى وكافة الميزات ، يجب عليك إنشاء حساب جديد بالتسجيل بالضغط هنا أو تسجيل الدخول اضغط هنا إذا كنت عضواً .

طلب هاك لمنع الرّسائل الخاصّة بين الذّكور و الإناث


مشاهدة المشاركة في الموضوع بالعرض العادي
look/images/icons/i1.gif طلب هاك لمنع الرّسائل الخاصّة بين الذّكور و الإناث
  10-09-2015 05:15 صباحاً  
Soliman
معلومات الكاتب


تفضل الطريقة



أفتح ملف : modules/pm_send.module.php



ابحث عن :

CODE
$GetMemberGroup = $PowerBB->core->GetInfo($GroupInfo,'group');

وضع اسفله :



CODE
            if (!$PowerBB->_CONF['group_info']['admincp_allow'] // السماح للإدارة
            or !$PowerBB->_CONF['group_info']['vice']) // السماح لنائب المدير
            {
                if($GetSendPm['user_gender'] == 'f'
                and $PowerBB->_CONF['member_row']['user_gender'] == 'm'
                or $PowerBB->_CONF['member_row']['user_gender'] == 'f'
                and $GetSendPm['user_gender'] == 'm')
                {
                 $PowerBB->functions->error("لا تستطيع ارسالة رسالة خاصة إلى  " .$GetSendPm['username']);
                }
            }

















ثم ابحث عن :

CODE
$Adress =     $PowerBB->functions->GetForumAdress();


وضع اسفله :



CODE
                      if (!$PowerBB->_CONF['group_info']['admincp_allow'] // السماح للإدارة
                      or !$PowerBB->_CONF['group_info']['vice']) // السماح لنائب المدير
                      {
                        if($MemberInfo['user_gender'] == 'f'
                        and $PowerBB->_CONF['member_row']['user_gender'] == 'm'
                        or $PowerBB->_CONF['member_row']['user_gender'] == 'f'
                        and $MemberInfo['user_gender'] == 'm')
                        {
                         $PowerBB->functions->error("لا تستطيع ارسالة رسالة خاصة إلى  " .$MemberInfo['username']);
                        }
                      }






أنتهى ..


الساعة الآن 07:27 PM