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:
stan 2010-02-15 17:11:58 +00:00
parent 63988218a7
commit 4f0c4cced0
1 changed files with 1 additions and 1 deletions

View File

@ -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();