Больше нельзя удалить любую гравировку любого игрока.

This commit is contained in:
Igor Barkov [iwork] 2018-12-12 17:02:40 +02:00
parent 0f6247ccae
commit b276451812
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ if (input::post('goto') == 'remont') {
}
if (input::post('goto') == 'gravirovka') {
$gravirovka_query = db::c()->query('SELECT * FROM `inventory` WHERE `owner` = ?i AND `dressed` = 0 AND `type` = 3 AND `name` NOT LIKE "?S" AND `setsale` = 0 OR `text` <> "?s" ORDER by `update` DESC', $_SESSION['uid'], '%Букет%', '');
$gravirovka_query = db::c()->query('SELECT * FROM `inventory` WHERE `owner` = ?i AND `dressed` = 0 AND `type` = 3 AND `name` NOT LIKE "?S" AND `setsale` = 0 OR `text` <> "?s" AND `owner` = ?i ORDER by `update` DESC', $_SESSION['uid'], '%Букет%', '', $_SESSION['uid']);
}
?>