clipbucket/upload/plugins/cb_captcha/uninstall_cb_captcha.php

12 lines
192 B
PHP
Raw Normal View History

<?php
//Function used to uninstall Plugin
function un_install_cb_captcha()
{
global $db;
$db->Execute(
'DROP TABLE '.tbl("captcha").''
);
}
un_install_cb_captcha();
?>