Merge pull request #6840 from turbo124/v5-develop
Fixes for invitations
This commit is contained in:
commit
ac65ef820e
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ class SetInviteDb
|
|||
$hashed_db = $hashids->decode($segments[0]);
|
||||
}
|
||||
|
||||
if(is_array($hashed_db) && ($hashed_db[0] == "01" || $hashed_db[0] == "02")){
|
||||
if($hashed_db && is_array($hashed_db) && ($hashed_db[0] == "01" || $hashed_db[0] == "02")){
|
||||
|
||||
MultiDB::setDB(MultiDB::DB_PREFIX.str_pad($hashed_db[0], 2, '0', STR_PAD_LEFT));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue