Update sessions.php

This commit is contained in:
Roman Kelesidis 2024-01-18 23:38:17 +07:00
parent 67a12bbd76
commit 20c06a4beb

View File

@ -797,9 +797,12 @@ class user_common
switch ($return_as)
{
case 'csv': return join(',', $excluded);
case 'flip_csv': return join(',', array_flip($excluded));
case 'array': return $excluded;
case 'flip': return array_flip(explode(',', $excluded));
case 'flip': return array_flip($excluded);
}
return array();
}
/**