Quote:
Originally Posted by Craig Ross
Hi great mod thanks for all the hard work.
i had a different mod that done this on the 3.6.4 version and am in the process of upgrading my forum.
is there a database query i could so to change all the with [media]http: www.youtube.com/somevidurl[/media]
to
[video]http: www.youtube.com/somevidurl[/video]
IE all instances of media] to video] in the database ?
|
update i found this worked for me just thought i would post it incase anyone else is looking to do this.
Code:
UPDATE
post
SET
pagetext = replace(pagetext,'media]', 'video]')
WHERE
pagetext LIKE '%media]%'
however this does not make the videos work but al least it turns them back into clickable urls