mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
strstr -> strpos fix by thomas koch
This commit is contained in:
parent
4338f6726b
commit
76ebb5167f
@ -568,7 +568,7 @@ class soinfolog // DB-Layer
|
||||
'event' => 'calendar'
|
||||
);
|
||||
$action = isset($action2app[$query['action']]) ? $action2app[$query['action']] : $query['action'];
|
||||
$action_id = @strstr($query['action_id'],',') ? explode(',',$query['action_id']) : $query['action_id'];
|
||||
$action_id = ( strpos($query['action_id'],',')!==false) ? explode(',',$query['action_id']) : $query['action_id'];
|
||||
|
||||
if ($action != '')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user