Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
b378e8e117
@ -16,15 +16,7 @@ $utf8Login = '';
|
||||
$utf8Login2 = '';
|
||||
$utf8Login = $uplogin;
|
||||
if ($uplogin != 'delete' && $utf8Login != 'delete' && $utf8Login2 != 'delete') {
|
||||
$clan = mysql_fetch_array(
|
||||
mysql_query(
|
||||
'SELECT `u`.* FROM `clan` AS `u` WHERE (`u`.`id`="' . mysql_real_escape_string(
|
||||
$_GET['id']
|
||||
) . '" OR `u`.`id`="' . mysql_real_escape_string(
|
||||
$uplogin
|
||||
) . '" OR `u`.`name`="' . mysql_real_escape_string($uplogin) . '") LIMIT 1'
|
||||
)
|
||||
);
|
||||
$clan = Db::getRow('select * from clan where id = ? or id = ? or name = ? limit 1', [$_GET['id'], $uplogin, $uplogin]);
|
||||
}
|
||||
if (!isset($clan['id'])) {
|
||||
die(
|
||||
|
Loading…
Reference in New Issue
Block a user