Уборка Unreachable statement. Замена === на == и !== на != в яваскриптах из-за ошибок с нестрогой типизацией при переходе на 7.4.
This commit is contained in:
@@ -1,92 +0,0 @@
|
||||
<?php
|
||||
if(!defined('GAME')){
|
||||
die();
|
||||
}
|
||||
|
||||
die('Ошибка, смотри файл');
|
||||
|
||||
$dungeon_id = isset($_GET['dungeon_id']) ? intval($_GET['dungeon_id']) : '';
|
||||
|
||||
$dungeon_params = mysql_fetch_assoc(mysql_query("SELECT * FROM `dungeon_room` WHERE `id`='".$dungeon_id."'"));
|
||||
if($_POST['id']){
|
||||
$mysql_query = '';
|
||||
if($dungeon_id){
|
||||
$mysql_query .= "UPDATE `dungeon_room` SET ";
|
||||
$mysql_query .= "`id`='".$_POST['id']."',";
|
||||
$mysql_query .= "`dungeon_id`='".$_POST['dungeon_id']."',";
|
||||
$mysql_query .= "`dungeon_name`='".$_POST['dungeon_name']."' ";
|
||||
$mysql_query .= "`dungeon_room`='".$_POST['dungeon_room']."' ";
|
||||
$mysql_query .= "`dungeon_tag`='".$_POST['dungeon_tag']."' ";
|
||||
$mysql_query .= "`city`='".$_POST['city']."' ";
|
||||
$mysql_query .= "`shop`='".$_POST['shop']."' ";
|
||||
$mysql_query .= "`roomLeave`='".$_POST['roomLeave']."' ";
|
||||
$mysql_query .= "`active`='".$_POST['active']."' ";
|
||||
$mysql_query .= "`quest`='".$_POST['quest']."' ";
|
||||
$mysql_query .= "WHERE `id`='".$dungeon_id."'";
|
||||
}else{
|
||||
$mysql_query .= "INSERT INTO `dungeon_room` ";
|
||||
$mysql_query .= "(`id`,`dungeon_id`,`dungeon_name`,`dungeon_room`,`dungeon_tag`,`shop`,`roomLeave`,`active`,`quest`,`city`)";
|
||||
$mysql_query .= " VALUES ";
|
||||
$mysql_query .= "('".$_POST['id']."','".$_POST['dungeon_id']."','".$_POST['dungeon_name']."','".$_POST['dungeon_room']."','".$_POST['dungeon_tag']."','".$_POST['shop']."','".$_POST['roomLeave']."','".$_POST['active']."','".$_POST['quest']."','".$_POST['city']."');";
|
||||
}
|
||||
mysql_query($mysql_query);
|
||||
die("<script>window.location = 'index.php?mod=dungeon_list';</script>");
|
||||
}
|
||||
?><script src="https://<?= $c['img']; ?>/js/jx/jquery.js" type="text/javascript"></script>
|
||||
<div align="left">
|
||||
<h3 style="text-align:left;"><?= $dungeon_params['id'] ? 'Изменить' : 'Добавить'; ?> пещеру</h3>
|
||||
</div>
|
||||
<form method="post" action="">
|
||||
<table border="0" cellpadding="0" cellspacing="1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><font color="red">*</font>ID подземелья: </td>
|
||||
<td><input name="dungeon_id" type="text" value="<?= $dungeon_params['dungeon_id']; ?>" size="5" maxlength="255"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color="red">*</font>Название пещеры: </td>
|
||||
<td><input name="dungeon_name" type="text" value="<?= $dungeon_params['dungeon_name']; ?>" size="30" maxlength="255"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color="red">*</font>Город: </td>
|
||||
<td><input name="city" type="text" value="<?= $dungeon_params['city']; ?>" size="30" maxlength="255"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color="red">*</font>Тэг: </td>
|
||||
<td><input name="dungeon_tag" type="text" value="<?= $dungeon_params['dungeon_tag']; ?>" size="30" maxlength="255"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color="red">*</font>ID локации (вход в подземелье): </td>
|
||||
<?php if($dungeon_params['id'] != 0) $room = mysql_fetch_assoc(mysql_query("SELECT id,name FROM `room` WHERE `id`='".$dungeon_params['id']."'")); else $room['name']=''; ?>
|
||||
<td><input name="id" type="text" value="<?= $dungeon_params['id']; ?>" size="5" maxlength="255"><i style="font-size:11px;color: brown;"> <?=$room['name']?></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color="red">*</font>ID локации (подземелье): </td>
|
||||
<?php if($dungeon_params['dungeon_room'] != 0) $room = mysql_fetch_assoc(mysql_query("SELECT id,name FROM `room` WHERE `id`='".$dungeon_params['dungeon_room']."'")); else $room['name']=''; ?>
|
||||
<td><input name="dungeon_room" type="text" value="<?= $dungeon_params['dungeon_room']; ?>" size="5" maxlength="255"><i style="font-size:11px;color: brown;"> <?=$room['name']?></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ID Рыцарского магазина: </td>
|
||||
<?php if($dungeon_params['shop'] != 0) $room = mysql_fetch_assoc(mysql_query("SELECT id,name FROM `room` WHERE `id`='".$dungeon_params['shop']."'")); else $room['name']=''; ?>
|
||||
<td><input name="shop" type="text" value="<?= $dungeon_params['shop']; ?>" size="5" maxlength="255"><i style="font-size:11px;color: brown;"> <?=$room['name']?></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ID комнаты для выхода: </td>
|
||||
<?php if($dungeon_params['roomLeave'] != 0) $room = mysql_fetch_assoc(mysql_query("SELECT id,name FROM `room` WHERE `id`='".$dungeon_params['roomLeave']."'")); else $room['name']=''; ?>
|
||||
<td><input name="roomLeave" type="text" value="<?= $dungeon_params['roomLeave']; ?>" size="5" maxlength="255"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Активна: </td>
|
||||
<td><select name="active"><option <?php if($dungeon_params['active']=='1') echo' selected="selected" '; ?>value="1">Да</option><option <?php if($dungeon_params['active']!='1') echo' selected="selected" ';?>value="0">Нет</option></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Включены квесты: </td>
|
||||
<td><select name="quest"><option <?php if($dungeon_params['quest']=='1') echo' selected="selected" '; ?>value="1">Да</option><option <?php if($dungeon_params['quest']!='1') echo' selected="selected" ';?>value="0">Нет</option></select></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p></p>
|
||||
<input name="submit" type="submit" value="Сохранить" style="width: 150px"/>
|
||||
<input name="cancel" type="submit" onclick="document.location='index.php?mod=dungeon_list'; return false;" value="Отмена" />
|
||||
<p><font color="red">*</font> - Обязательные поля </p>
|
||||
</form>
|
||||
@@ -1,10 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="https://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<title>Документ без названия</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user