mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-01 01:51:12 -05:00
10 lines
149 B
PHP
10 lines
149 B
PHP
var labels = new Array();
|
|
<?php
|
|
foreach ( $labels as $index=>$label )
|
|
{
|
|
?>
|
|
labels[<?= validInt($index) ?>] = "<?= validJsStr($label) ?>";
|
|
<?php
|
|
}
|
|
?>
|