Fixed bug that caused 'Call to undefined function Error()' in control_functions.php. Exception was being raised due to logger.php not being included in control_functions.php.
This commit is contained in:
parent
4c213ab453
commit
2d965e7d50
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once('logger.php');
|
||||||
|
|
||||||
function buildControlCommand($monitor) {
|
function buildControlCommand($monitor) {
|
||||||
$ctrlCommand = '';
|
$ctrlCommand = '';
|
||||||
$control = $monitor->Control();
|
$control = $monitor->Control();
|
||||||
|
@ -218,7 +220,7 @@ function buildControlCommand($monitor) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Error('Invalid control parameter: ' . $_REQUEST['control'] );
|
ZM\Error('Invalid control parameter: ' . $_REQUEST['control'] );
|
||||||
}
|
}
|
||||||
} elseif ( isset($_REQUEST['x']) && isset($_REQUEST['y']) ) {
|
} elseif ( isset($_REQUEST['x']) && isset($_REQUEST['y']) ) {
|
||||||
if ( $_REQUEST['control'] == 'moveMap' ) {
|
if ( $_REQUEST['control'] == 'moveMap' ) {
|
||||||
|
|
Loading…
Reference in New Issue