Changed calls of deprecated split function to use explode

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3019 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2010-02-15 17:09:07 +00:00
parent 5ae6123ba3
commit aeee1aff69
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ if ( !empty($action) )
if ( @socket_connect( $socket, $sockFile ) ) if ( @socket_connect( $socket, $sockFile ) )
{ {
$options = array(); $options = array();
foreach ( split( " ", $ctrlCommand ) as $option ) foreach ( explode( " ", $ctrlCommand ) as $option )
{ {
if ( preg_match( '/--([^=]+)(?:=(.+))?/', $option, $matches ) ) if ( preg_match( '/--([^=]+)(?:=(.+))?/', $option, $matches ) )
{ {
@ -214,7 +214,7 @@ if ( !empty($action) )
{ {
$zmuCommand = getZmuCommand( " -m ".$mid." -B".$_REQUEST['newBrightness']." -C".$_REQUEST['newContrast']." -H".$_REQUEST['newHue']." -O".$_REQUEST['newColour'] ); $zmuCommand = getZmuCommand( " -m ".$mid." -B".$_REQUEST['newBrightness']." -C".$_REQUEST['newContrast']." -H".$_REQUEST['newHue']." -O".$_REQUEST['newColour'] );
$zmuOutput = exec( escapeshellcmd( $zmuCommand ) ); $zmuOutput = exec( escapeshellcmd( $zmuCommand ) );
list( $brightness, $contrast, $hue, $colour ) = split( ' ', $zmuOutput ); list( $brightness, $contrast, $hue, $colour ) = explode( ' ', $zmuOutput );
dbQuery( "update Monitors set Brightness = '".$brightness."', Contrast = '".$contrast."', Hue = '".$hue."', Colour = '".$colour."' where Id = '".$mid."'" ); dbQuery( "update Monitors set Brightness = '".$brightness."', Contrast = '".$contrast."', Hue = '".$hue."', Colour = '".$colour."' where Id = '".$mid."'" );
} }
} }