Files
Pichome/dzz/search/uninstall.php
2024-03-12 17:49:15 +08:00

22 lines
426 B
PHP

<?php
/* @authorcode codestrings
* @copyright QiaoQiaoShiDai Internet Technology(Shanghai)Co.,Ltd
* @license https://www.oaooa.com/licenses/
*
* @link https://www.oaooa.com
*/
if(!defined('IN_OAOOA') || !defined('IN_ADMIN')) {
exit('Access Denied');
}
//卸载加密程序;
$sql = <<<EOF
DROP TABLE IF EXISTS `pichome_search_template `;
EOF;
runquery($sql);
$finish = true;