Changeset 6670 for trunk/src/includes/admin/converters/vBulletin3.php
- Timestamp:
- 08/27/2017 11:24:00 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/vBulletin3.php
r6573 r6670 21 21 * 22 22 */ 23 function __construct() {23 public function __construct() { 24 24 parent::__construct(); 25 $this->setup_globals();26 25 } 27 26 … … 30 29 */ 31 30 private function setup_globals() { 31 32 // Setup smiley URL & path 33 $this->bbcode_parser_properties = array( 34 'smiley_url' => false, 35 'smiley_dir' => false 36 ); 32 37 33 38 /** Forum Section *****************************************************/ … … 655 660 656 661 /** 657 * Translate the forum type from vBulletin v3.x numeric 's to WordPress's strings.662 * Translate the forum type from vBulletin v3.x numerics to WordPress's strings. 658 663 * 659 664 * @param int $status vBulletin v3.x numeric forum type … … 670 675 671 676 /** 672 * Translate the topic sticky status type from vBulletin v3.x numeric 's to WordPress's strings.677 * Translate the topic sticky status type from vBulletin v3.x numerics to WordPress's strings. 673 678 * 674 679 * @param int $status vBulletin v3.x numeric forum type … … 701 706 702 707 /** 703 * Translate the post status from vBulletin v3.x numeric 's to WordPress's strings.708 * Translate the post status from vBulletin v3.x numerics to WordPress's strings. 704 709 * 705 710 * @param int $status vBulletin v3.x numeric topic status … … 745 750 746 751 // Parse out any bbCodes in $field with the BBCode 'parser.php' 747 require_once bbpress()->admin->admin_dir . 'parser.php'; 748 $bbcode = BBCode::getInstance(); 749 $bbcode->enable_smileys = false; 750 $bbcode->smiley_regex = false; 751 return html_entity_decode( $bbcode->Parse( $field ) ); 752 return parent::callback_html( $field ); 752 753 } 753 754 }
Note: See TracChangeset
for help on using the changeset viewer.