#3112 closed defect (bug) (duplicate)
SMF converter replaces <br /> with <tt>
Reported by: | vmbellamy | Owned by: | johnjamesjacoby |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 2.5.13 |
Component: | API - Importers | Keywords: | |
Cc: |
Description
Dear Sirs and/or Madames,
With the latest version of bbPress, I noticed that the importer kept adding the <tt> tag in my test import of a SMF forum. So, I looked in the source code and found that on line 723 of SMF.php, it reads this:
$SMF_markup = preg_replace( '/\<br \/\>/', '<tt>', $SMF_markup );
it should read this:
$SMF_markup = preg_replace( '/\<br \/\>/', '<br />', $SMF_markup );
though maybe not, as the comment above reads
// Replace '<br />' with ''
Change History (4)
#1
@
7 years ago
- Keywords commit added
- Milestone changed from Awaiting Review to 2.6
- Owner set to johnjamesjacoby
- Priority changed from normal to high
Note: See
TracTickets for help on using
tickets.
Sorry about that. I'll get this fixed, and check out the others for similar issues.