Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Install/Upgrade/1010570-115.php
<?php

namespace XF\Install\Upgrade;

class
Version1010570 extends AbstractUpgrade
{
    public function
getVersionName()
    {
        return
'1.1.5';
    }

    public function
step1()
    {
       
$this->executeUpgradeQuery('
            UPDATE xf_bb_code_media_site SET
                match_urls = \'facebook.com/*video.php?v={$id:digits}\nfacebook.com/*photo.php?v={\$id:digits}\',
                embed_html = \'<iframe src="https://www.facebook.com/video/embed?video_id={$id}" width="500" height="300" frameborder="0"></iframe>\'
            WHERE media_site_id = \'facebook\'
                AND match_urls = \'facebook.com/*video.php?v={\$id:digits}\'
                AND embed_html LIKE \'%<object%\'
        '
);

        return
true;
    }
}