2013-10-07 12:17:06 +00:00
|
|
|
<?php
|
|
|
|
//Function used to uninstall Plugin
|
|
|
|
function un_install_editors_pick()
|
|
|
|
{
|
|
|
|
global $db;
|
|
|
|
$db->Execute(
|
|
|
|
'DROP TABLE '.tbl("editors_picks")
|
|
|
|
);
|
2014-05-26 06:30:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
$db->Execute("ALTER TABLE ".tbl('video')." DROP `in_editor_pick` ");
|
2013-10-07 12:17:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
un_install_editors_pick();
|
|
|
|
?>
|