1 |
601
|
doc
|
<?php
|
2 |
|
|
|
3 |
|
|
// $Id$
|
4 |
|
|
|
5 |
|
|
// JsAdmin module for Website Baker
|
6 |
|
|
// Copyright (C) 2006, Stepan Riha
|
7 |
|
|
// www.nonplus.net
|
8 |
|
|
|
9 |
|
|
// modified by Swen Uth for Website Baker 2.7
|
10 |
|
|
|
11 |
|
|
/*
|
12 |
|
|
|
13 |
|
|
Website Baker Project <http://www.websitebaker.org/>
|
14 |
|
|
Copyright (C) 2004-2008, Ryan Djurovich
|
15 |
|
|
|
16 |
|
|
Website Baker is free software; you can redistribute it and/or modify
|
17 |
|
|
it under the terms of the GNU General Public License as published by
|
18 |
|
|
the Free Software Foundation; either version 2 of the License, or
|
19 |
|
|
(at your option) any later version.
|
20 |
|
|
|
21 |
|
|
Website Baker is distributed in the hope that it will be useful,
|
22 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
23 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
24 |
|
|
GNU General Public License for more details.
|
25 |
|
|
|
26 |
|
|
You should have received a copy of the GNU General Public License
|
27 |
|
|
along with Website Baker; if not, write to the Free Software
|
28 |
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
29 |
|
|
|
30 |
|
|
*/
|
31 |
|
|
|
32 |
|
|
// prevent this file from being accessed directly
|
33 |
|
|
if(!defined('WB_PATH')) { exit('Cannot access this file directly'); }
|
34 |
|
|
|
35 |
677
|
thorn
|
$table = TABLE_PREFIX ."mod_jsadmin";
|
36 |
|
|
$database->query("DROP TABLE `$table`");
|
37 |
601
|
doc
|
?>
|