- الرئيسية
- ما الجديد !
-
الصفحات▼
الصفحات
عند عمل قسم خاص
الساعة الآن 12:03 PM
// Get the subject and the subject's writer information // if section Allw hide subject can't show this subject , so stop the page
$SubjectHideArr = array();
$SubjectHideArr['where'] = array('id',$PowerBB->_GET['id']);
$SubjectHide = $PowerBB->subject->GetSubjectInfo($SubjectHideArr);
$SecHideArr = array();
$SecHideArr['where'] = array('id',$SubjectHide['section']);
$SectionHide = $PowerBB->section->GetSectionInfo($SecHideArr);
if ($SectionHide['hide_subject']
and !$PowerBB->_CONF['group_info']['admincp_allow']
and !$SubjectHide['writer'] == $PowerBB->_CONF['member_row']['username'])
{
$PowerBB->functions->error('المعذره لا يمكنك الإطلاع على هذا الموضوع');
}