10-07-2007, 01:25
[/color][/size]misc.php aç
bul:
değiştir:
2. private.php aç
bul:
üstüne ekle:
2. inc/class_core.php aç
bul:
değiştir:
MyBB 1.2/1.1 Plugin Paketi
Ekteki plugini inc/pluginse atın ve çalıştırın.
bul:
Kod:
if(!$mybb->input['imtype'])
{
error($lang->error_invalidimtype);
}değiştir:
Kod:
if($mybb->input['imtype'] != "aim" && $mybb->input['imtype'] != "icq" && $mybb->input['imtype'] != "msn" && $mybb->input['imtype'] != "yahoo")
{
error($lang->error_invalidimtype);
}2. private.php aç
bul:
Kod:
$plugins->run_hooks("private_do_export_start");üstüne ekle:
Kod:
if($mybb->input['exporttype'] != "csv" && $mybb->input['exporttype'] != "text" && $mybb->input['exporttype'] != "html")
{
exit;
}2. inc/class_core.php aç
bul:
Kod:
/**
* The friendly version number of MyBB we're running.
*
* @var string
*/
var $version = "1.2.8";
/**
* The version code of MyBB we're running.
*
* @var integer
*/
var $version_code = 128;değiştir:
Kod:
/**
* The friendly version number of MyBB we're running.
*
* @var string
*/
var $version = "1.2.9";
/**
* The version code of MyBB we're running.
*
* @var integer
*/
var $version_code = 129;MyBB 1.2/1.1 Plugin Paketi
Ekteki plugini inc/pluginse atın ve çalıştırın.