Fixed SMF Importer doesn't transfer [img] bbcode

jeffwidman

Active member
@Chris D --sorry to be dumping bug reports on you.

Discovered some IMG BBCode that isn't showing up properly after I did the SMF import. I think it's because it includes width and height codes. I tried a few different variations, like putting the values in quotes, but nothing worked other than completely stripping out the width and height attributes--does Xenforo not support them in IMG tags?

Here's an example:
Code:
[img width=400 height=266]http://h.fastcompany.net/multisite_files/fastcompany/imagecache/slideshow_large/slideshow/2014/12/3039678-slide-s-6-star-wars-photos-by-thomas-dagg.jpg[/img]

As soon as I strip out the width and height it works properly.

Not sure if this falls within the scope of the importer, or something that manually should be handled by the admin. It's a fairly standard tag...
 
When I stick that in the find and replace, I get:

Code:
Server Error

preg_match_all(): Delimiter must not be alphanumeric or backslash

XenForo_Application::handlePhpError()
preg_match_all() in PostReplace/ControllerAdmin/PostReplace.php at line 26
PostReplace_ControllerAdmin_PostReplace->actionReplace() in XenForo/FrontController.php at line 347
XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 134
XenForo_FrontController->run() in /home/nginx/domains/sportsjournalists.com/public/forum/admin.php at line 13

I'm limiting the intial find to posts containing "img",
using the Regex you suggested above for finding:
Code:
\[img.*](.*)\[/img\]

As well as the replacement regex:
Code:
[IMG]$1[/IMG]
 
Top Bottom