mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix each error if no sessions listed (php4 mode sessions); add switch to add in
php4 mode session listing later
This commit is contained in:
parent
ab1bae0505
commit
e17a39e584
@ -34,7 +34,7 @@
|
||||
{
|
||||
$values = $this->so->list_sessions($start,$sort,$order);
|
||||
|
||||
while (list(,$value) = each($values))
|
||||
while (list(,$value) = @each($values))
|
||||
{
|
||||
if (ereg('@',$value['session_lid']))
|
||||
{
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
function socurrentsessions()
|
||||
{
|
||||
$this->db = $GLOBALS['phpgw']->db;
|
||||
$this->db = $GLOBALS['phpgw']->db;
|
||||
}
|
||||
|
||||
function total()
|
||||
@ -31,21 +31,29 @@
|
||||
|
||||
function list_sessions($start,$order,$sort)
|
||||
{
|
||||
$ordermethod = 'order by session_dla asc';
|
||||
|
||||
$this->db->limit_query("select * from phpgw_sessions where session_flags != 'A' order by $sort $order",$start,__LINE__,__FILE__);
|
||||
|
||||
while ($this->db->next_record())
|
||||
switch ($GLOBALS['phpgw_info']['server']['sessions_type'])
|
||||
{
|
||||
$values[] = array(
|
||||
'session_id' => $this->db->f('session_id'),
|
||||
'session_lid' => $this->db->f('session_lid'),
|
||||
'session_ip' => $this->db->f('session_ip'),
|
||||
'session_logintime' => $this->db->f('session_logintime'),
|
||||
'session_action' => $this->db->f('session_action'),
|
||||
'session_dla' => $this->db->f('session_dla')
|
||||
);
|
||||
case 'php4':
|
||||
/* TODO */
|
||||
break;
|
||||
case 'db':
|
||||
default:
|
||||
$ordermethod = 'order by session_dla asc';
|
||||
$this->db->limit_query("select * from phpgw_sessions where session_flags != 'A' order by $sort $order",$start,__LINE__,__FILE__);
|
||||
|
||||
while ($this->db->next_record())
|
||||
{
|
||||
$values[] = array(
|
||||
'session_id' => $this->db->f('session_id'),
|
||||
'session_lid' => $this->db->f('session_lid'),
|
||||
'session_ip' => $this->db->f('session_ip'),
|
||||
'session_logintime' => $this->db->f('session_logintime'),
|
||||
'session_action' => $this->db->f('session_action'),
|
||||
'session_dla' => $this->db->f('session_dla')
|
||||
);
|
||||
}
|
||||
return $values;
|
||||
break;
|
||||
}
|
||||
return $values;
|
||||
}
|
||||
}
|
||||
|
@ -110,7 +110,7 @@
|
||||
|
||||
$values = $this->bo->list_sessions($info['start'],$info['order'],$info['sort']);
|
||||
|
||||
while (list(,$value) = each($values))
|
||||
while (list(,$value) = @each($values))
|
||||
{
|
||||
$this->nextmatchs->template_alternate_row_color(&$this->template);
|
||||
|
||||
@ -154,7 +154,7 @@
|
||||
$this->template->parse('rows','row',True);
|
||||
}
|
||||
|
||||
$this->template->pparse('out','list');
|
||||
$this->template->pfp('out','list');
|
||||
}
|
||||
|
||||
function kill()
|
||||
|
Loading…
Reference in New Issue
Block a user