mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-04 12:17:58 -05:00
8 lines
204 B
PHP
8 lines
204 B
PHP
<?php
|
|
$class = 'message';
|
|
if (!empty($params['class'])) {
|
|
$class .= ' ' . $params['class'];
|
|
}
|
|
?>
|
|
<div id="<?php echo h($key) ?>Message" class="<?php echo h($class) ?>"><?php echo h($message) ?></div>
|