---------------------------
1. misc.php Dosyasını Aç
---------------------------

Bul:
--
    if(!$mybb->input['imtype'])
    {
        error($lang->error_invalidimtype);
    }
--

Bununla değiştir:
--
    if($mybb->input['imtype'] != "aim" && $mybb->input['imtype'] != "icq" && $mybb->input['imtype'] != "msn" && $mybb->input['imtype'] != "yahoo")
    {
        error($lang->error_invalidimtype);
    }
--

---------------------------
2. private.php Dosyasını Aç
---------------------------


Bul :
--
$plugins->run_hooks("private_do_export_start");
--

Üstüne Ekle:
--
    if($mybb->input['exporttype'] != "csv" && $mybb->input['exporttype'] != "text" && $mybb->input['exporttype'] != "html")
    {
        exit;
    }
--

AÇ :
---------------------------
2. inc/class_core.php (Version numarası değiştirme)
---------------------------

Bul :
--
    /**
     * 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;
--

Bununla değiştir :
--
  /**
     * 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;
Güncelleme tamamlanmıştır