- added option to add custom *.ini files into /conf dir

- smaller fixes
This commit is contained in:
Exodus4D
2017-06-03 19:52:56 +02:00
parent 0f3a485bb7
commit 433c555265
8 changed files with 8 additions and 9 deletions

View File

@@ -211,7 +211,7 @@ class Admin extends Controller{
protected function filterValidCharacters(CharacterModel $character, $characterId){
$characters = [];
// check if kickCharacters belong to same Corp as admin character
// -> remove admin char from kickCharacters...
// -> remove admin char from valid characters...
if( !empty($characterIds = array_diff( [$characterId], [$character->_id])) ){
$characters = $character->getCorporation()->getCharacters($characterIds);
}