mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-02 10:31:12 -05:00
15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
|
|
if ( empty($_REQUEST['mid']) )
|
|
{
|
|
ajaxError( 'No monitor id supplied' );
|
|
}
|
|
elseif ( !isset($_REQUEST['zid']) )
|
|
{
|
|
ajaxError( 'No zone id(s) supplied' );
|
|
}
|
|
|
|
ajaxError( 'Unrecognised action or insufficient permissions' );
|
|
|
|
?>
|