*** empty log message ***

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1424 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2005-05-22 15:39:14 +00:00
parent c20d73e95b
commit 7d633737f5
2 changed files with 5 additions and 1 deletions

View File

@ -843,6 +843,10 @@ if ( isset($action) )
$control = 'preset_goto';
$ctrl_command .= " --preset ".$matches[1];
}
elseif ( $control == "preset_set" )
{
$ctrl_command .= " --preset ".$preset;
}
elseif ( $control == "move_map" )
{
$ctrl_command .= " -xcoord $x -ycoord $y";

View File

@ -130,7 +130,7 @@ function loadConfig()
$config = array();
$config_cat = array();
$sql = "select * from Config";
$sql = "select * from Config order by Id asc";
$result = mysql_query( $sql );
if ( !$result )
echo mysql_error();