XenForo
Administrative
- Thread starter
- Admin
- #1
Let's say I want to remove the following legacy BBcode:
Code:
Then I run:
SQL:
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:
So, I don't want to remove the
Code:
part that matches on accident.
Post content...
Read more
ادامه مطلب...
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]
part that matches on accident.
Post content...
Read more
ادامه مطلب...