Changeset 5557 for trunk/src/includes/admin/converters/SMF.php
- Timestamp:
- 11/08/2014 01:36:45 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/converters/SMF.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/SMF.php
r5544 r5557 729 729 730 730 // Replace '[list]' with '<ul>' 731 $ phpbb_uid = preg_replace( '/\[list\]/', '<ul>', $phpbb_uid);731 $SMF_markup = preg_replace( '/\[list\]/', '<ul>', $SMF_markup ); 732 732 // Replace '[liist type=decimal]' with '<ol type="a">' 733 $ phpbb_uid = preg_replace( '/\[list\ type=decimal\]/', '<ol type="a">', $phpbb_uid);733 $SMF_markup = preg_replace( '/\[list\ type=decimal\]/', '<ol type="a">', $SMF_markup ); 734 734 // Replace '[li]' with '<li>' 735 735 $SMF_markup = preg_replace( '/\[li\]/', '<li>', $SMF_markup );
Note: See TracChangeset
for help on using the changeset viewer.