Changed use of deprecated split function to explode
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3025 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
63988218a7
commit
4f0c4cced0
|
@ -72,7 +72,7 @@ $running = daemonCheck();
|
|||
$status = $running?$SLANG['Running']:$SLANG['Stopped'];
|
||||
|
||||
if ( $group = dbFetchOne( "select * from Groups where Id = '".(empty($_COOKIE['zmGroup'])?0:dbEscape($_COOKIE['zmGroup']))."'" ) )
|
||||
$groupIds = array_flip(split( ',', $group['MonitorIds'] ));
|
||||
$groupIds = array_flip(explode( ',', $group['MonitorIds'] ));
|
||||
|
||||
noCacheHeaders();
|
||||
|
||||
|
|
Loading…
Reference in New Issue