Add files via upload

This commit is contained in:
Last
2018-11-15 17:39:11 +08:00
committed by GitHub
parent ed7db38abd
commit eec60a63f2
28 changed files with 2338 additions and 0 deletions

16
z_postEx/unstall.php Normal file
View File

@@ -0,0 +1,16 @@
<?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, '卸载表失败');
?>