15 lines
No EOL
319 B
PHP
15 lines
No EOL
319 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("DELETE FROM phrases WHERE varname='cust_field_err'");
|
|
$db->Execute("DROP TABLE `custom_fields`");
|
|
}
|
|
uninstall_embed_video_mode();
|
|
?>
|