mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
PHP/Core
* enforced v7.1 compliance, preparations for v7.2 * removed deprecated usage of each() * prefer array deconstruction via [] instead of calling list() * try to catch failed session_start() * prefer ... - Token instead of calling func_get_args() func_num_args() * enforce return types in AjaxHandler * revision push
This commit is contained in:
@@ -559,7 +559,7 @@ class RemoteProfileList extends ProfileList
|
||||
$curTpl['battlegroup'] = CFG_BATTLEGROUP;
|
||||
|
||||
// realm
|
||||
list($r, $g) = explode(':', $guid);
|
||||
[$r, $g] = explode(':', $guid);
|
||||
if (!empty($realms[$r]))
|
||||
{
|
||||
$curTpl['realm'] = $r;
|
||||
@@ -622,7 +622,7 @@ class RemoteProfileList extends ProfileList
|
||||
$limit--;
|
||||
}
|
||||
|
||||
list($r, $g) = explode(':', $guid);
|
||||
[$r, $g] = explode(':', $guid);
|
||||
|
||||
// talent points post
|
||||
$curTpl['talenttree1'] = 0;
|
||||
|
||||
Reference in New Issue
Block a user