بسم الله الرحمن الرحيم :
هاك رفع الموضوع إلى الأعلى ...
=======================
افتح ملف postings.php
ابحث عن
رمز PHP:
case 'removeredirect' :
استبدلها بالتالي
رمز
// Hack: bump and debump
case 'bump':
case 'debump':
ابحث عن
رمز PHP:
// ############################### start do open / close thread ###############################
استبدلها بالتالي
رمز PHP:
// ############################### start bump and de-bump ###############################
if ($_REQUEST['do'] == 'bump')
{
// only mods with the correct permissions should be able to access this
if (!can_moderate($threadinfo['forumid'], 'caneditthreads'))
{
print_no_permission();
}
// Bump
$DB_site->query("UPDATE ".TABLE_PREFIX."thread SET lastpost=".TIMENOW." WHERE threadid='".$threadinfo['threadid']."'");
if ($_REQUEST['do'] == 'debump')
{
// only mods with the correct permissions should be able to access this
if (!can_moderate($threadinfo['forumid'], 'caneditthreads'))
{
print_no_permission();
}
// De-Bump
$DB_site->query("UPDATE ".TABLE_PREFIX."thread SET lastpost=lastpost-86400 WHERE threadid='".$threadinfo['threadid']."'");
الساعة معتمدة بتوقيت جرينتش +3 . الساعة الآن : 00:01.
المعهد غير مسؤول عن أي اتفاق تجاري أو تعاوني بين الأعضاء
فعلى كل شخص تحمل مسئولية نفسه إتجاه مايقوم به من بيع وشراء وإتفاق وأعطاء معلومات موقعه
التعليقات المنشورة لا تعبر عن رأي معهد ترايدنت ولا نتحمل أي مسؤولية قانونية حيال ذلك (ويتحمل كاتبها مسؤولية النشر)