clipbucket/upload/plugins/embed_video_mod/uninstall_embed_video_mod.php
2013-10-07 12:17:06 +00:00

14 lines
No EOL
272 B
PHP

<?php
require_once('../includes/common.php');
/**
* This file is used to install Embed Video Mod
*/
function uninstall_embed_video_mode()
{
global $db;
$db->Execute("ALTER TABLE `".tbl('video')."` DROP `embed_code` ");
}
uninstall_embed_video_mode();
?>