xiuno_plugin/z_postEx/unstall.php

16 lines
305 B
PHP
Raw Normal View History

2018-11-15 17:39:11 +08:00
<?php
/*
Xiuno BBS 4.0 插件实例TAG 插件卸载
admin/plugin-unstall-xn_tag.htm
*/
!defined('DEBUG') AND exit('Forbidden');
$tablepre = $db->tablepre;
$sql = "DROP TABLE IF EXISTS {$tablepre}post_reply;";
$r = db_exec($sql);
$r === FALSE AND message(-1, '卸载表失败');
?>