mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-16 20:58:27 +01:00
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?
|
|
require("include/top.php");
|
|
|
|
if ($SESSION_LEVEL=='administrator' || $SESSION_LEVEL=='moderator'):
|
|
|
|
if ($id && $action=='delete')
|
|
{
|
|
$query = "DELETE FROM groups WHERE id=$id LIMIT 1";
|
|
mysql_query($query);
|
|
|
|
$query = "DELETE FROM groupsaka WHERE group1=$id or group2=$id or group3=$id";
|
|
mysql_query($query);
|
|
|
|
print("group $id deleted<br />\n");
|
|
logGloperatorAction("group_del",$id);
|
|
}
|
|
|
|
?>
|
|
|
|
<p>DOUBLE CHECK THAT YOU'RE DELETING THE RIGHT GROUP NUMBER BEFORE CLICKING!</p>
|
|
<p>THE LOBSTER WILL EAT YOUR CHILDREN IF YOU DONT!!</p>
|
|
<p>THIS IS THE ONE AND ONLY WARNING!!!</p>
|
|
<p>DOUBLE CHECK THE NUMBER!!!</p>
|
|
|
|
<form action="<?=basename($_SERVER['SCRIPT_FILENAME'])?>" method="post">
|
|
group ID
|
|
<input type="text" name="id">
|
|
<input type="submit" name="action" value="delete">
|
|
</form>
|
|
|
|
<? else: ?>
|
|
|
|
<p>dude, that's a dangerous page...</p>
|
|
|
|
<form action="login.php" method="post">
|
|
<table cellspacing="1" cellpadding="2" class="box">
|
|
<tr bgcolor="#446688">
|
|
<td nowrap align="center">
|
|
<input type="text" name="login" value="SceneID" size="15" maxlength="16" onfocus="this.value=''">
|
|
<input type="password" name="password" value="password" size="15" onfocus="javascript:if(this.value=='password') this.value='';"><br />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#6688AA" align="right">
|
|
<input type="image" src="gfx/submit.gif">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<? endif; ?>
|
|
<br />
|
|
|
|
<? require("include/bottom.php"); ?>
|