<div>
صدر الترقيع الاول pl1 الخاص بالنسخة 3.7.3
رابط الموضوع في vbulletin
http://www.vbulletin.com/forum/showthread.php?p=1619550
الملفات التي سيشملها الاستبدال وهي
رمز Code:
/global.php
includes/class_core.php
includes/functions.php
includes/version_vbulletin.php
ملف global.php
ابحث عن هذا الكود
رمز Code:
$cronimage = '
) . ')
';
استبدله بـــــ
رمز Code:
$cronimage = '
 . ')
';
ملف includes/class_core.php
ابحث عن هذا الكود
رمز Code:
return md5(TIMENOW . ******PATH . SESSION_IDHASH . SESSION_HOST . vbrand(1, 1000000));
استبدله بـــــ
رمز Code:
return md5(uniqid(microtime(), true));
ملف includes/functions.php
ابحث عن هذا الكود
رمز Code:
function vbrand($min, $max, $seed = -1)
{
if (!defined('RAND_SEEDED'))
{
if ($seed == -1)
{
$seed = (double) microtime() * 1000000;
}
mt_srand($seed);
define('RAND_SEEDED', true);
}
return mt_rand($min, $max);
}
استبدله بـــــ
<div style="margin:20px; margin-top:5px"> رمز Code:
function vbrand($min = 0, $max = 0, $seed = null)
{
mt_srand(crc32(microtime()));
if ($max AND $max