function __construct()
 {
     // mbstring functions are always required for ja.
     $this->mbfunctions_required = true;
     $this->conf['patch_wp_mail'] = true;
     $this->conf['patch_incoming_trackback'] = true;
     $this->conf['patch_incoming_pingback'] = true;
     $this->conf['patch_process_search_terms'] = true;
     $this->conf['patch_admin_custom_css'] = true;
     $this->conf['patch_force_character_count'] = true;
     $this->conf['patch_force_twentytwelve_open_sans_off'] = true;
     $this->conf['patch_wp_trim_words'] = true;
     // auto, JIS, UTF-8
     $this->conf['mail_mode'] = 'JIS';
     $this->conf['admin_custom_css_url'] = '';
     parent::__construct();
 }
Esempio n. 2
0
 function __construct()
 {
     // auto, JIS, UTF-8
     $this->conf['mail_mode'] = 'JIS';
     // Treats any post as a multibyte text.
     $this->conf['ascii_threshold'] = 100;
     $this->debug_suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
     parent::__construct();
 }