mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Fixed killing another users session not working correctly
This commit is contained in:
parent
3a65ab5a7f
commit
b66076c146
@ -32,12 +32,6 @@
|
|||||||
|
|
||||||
function list_sessions($start,$order,$sort)
|
function list_sessions($start,$order,$sort)
|
||||||
{
|
{
|
||||||
// if (! $sort || ! $order)
|
|
||||||
// {
|
|
||||||
// $order = 'session_dla';
|
|
||||||
// $sort = 'asc';
|
|
||||||
// }
|
|
||||||
|
|
||||||
$values = $this->so->list_sessions($start,$sort,$order);
|
$values = $this->so->list_sessions($start,$sort,$order);
|
||||||
|
|
||||||
while (list(,$value) = each($values))
|
while (list(,$value) = each($values))
|
||||||
@ -69,7 +63,7 @@
|
|||||||
{
|
{
|
||||||
if ($GLOBALS['ksession'] && $GLOBALS['sessionid'] != $GLOBALS['ksession'] && ! $GLOBALS['phpgw']->acl->check('current_sessions_access',8,'admin'))
|
if ($GLOBALS['ksession'] && $GLOBALS['sessionid'] != $GLOBALS['ksession'] && ! $GLOBALS['phpgw']->acl->check('current_sessions_access',8,'admin'))
|
||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->session->destroy($GLOBALS['ksession']);
|
$GLOBALS['phpgw']->session->destroy($GLOBALS['ksession'],0);
|
||||||
}
|
}
|
||||||
$this->ui = createobject('admin.uicurrentsessions');
|
$this->ui = createobject('admin.uicurrentsessions');
|
||||||
$this->ui->list_sessions();
|
$this->ui->list_sessions();
|
||||||
|
Loading…
Reference in New Issue
Block a user