2009-11-05 21:50:39 +00:00
|
|
|
<?php
|
|
|
|
//Function used to uninstall Plugin
|
|
|
|
function un_install_editors_pick()
|
|
|
|
{
|
|
|
|
global $db;
|
|
|
|
$db->Execute(
|
2010-02-06 12:49:08 +00:00
|
|
|
'DROP TABLE `'.tbl("editors_picks").'`'
|
2009-11-05 21:50:39 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
un_install_editors_pick();
|
|
|
|
?>
|