Skip to content

Commit e6c5bdb

Browse files
Use modern string interpolation style
1 parent 43f2525 commit e6c5bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/includes/Monitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ class="monitorStream imageFeed"
11971197
if ($options['mode'] == 'stream') {
11981198
Info('The system has fallen back to single jpeg mode for streaming. Consider enabling Cambozola or upgrading the client browser.');
11991199
}
1200-
Warning("Using deprecated single stream mode ${options['mode']}");
1200+
Warning("Using deprecated single stream mode {$options['mode']}");
12011201
$options['mode'] = 'single';
12021202
$streamSrc = $this->getStreamSrc($options);
12031203
$html .= getImageStill('liveStream'.$this->Id(), $streamSrc,

0 commit comments

Comments
 (0)