mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-04-27 17:31:07 -04:00
10 lines
163 B
PHP
10 lines
163 B
PHP
var labels = new Array();
|
|
<?php
|
|
foreach ( $labels as $index=>$label )
|
|
{
|
|
?>
|
|
labels[<?php echo validInt($index) ?>] = "<?php echo validJsStr($label) ?>";
|
|
<?php
|
|
}
|
|
?>
|