Heraldic Age
Member
Let's say I want to remove the following legacy BBcode:
Then I run:
Is this correct? Just checking here before I bottle it and have to restore a backup. For example, the Xenforo Youtube embed code is:
So, I don't want to remove the
part that matches on accident.
Post content find/replace doesn't work due to large forum size.
Code:
[video=youtube]
Then I run:
SQL:
UPDATE xf_post SET message = REPLACE(message, '[video=youtube][/video]', '[MEDIA=youtube][/MEDIA]');
Is this correct? Just checking here before I bottle it and have to restore a backup. For example, the Xenforo Youtube embed code is:
Code:
[MEDIA=youtube][/MEDIA]
So, I don't want to remove the
Code:
=youtube]
Post content find/replace doesn't work due to large forum size.