Skip to content

Commit

Permalink
Merge pull request #21 from eliovir/patch-1
Browse files Browse the repository at this point in the history
Remove escaped quote
  • Loading branch information
zoic21 authored Sep 30, 2024
2 parents 2f6137d + 31f61d2 commit 337330e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desktop/php/zwavejs.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
$controllerStatus = config::byKey('controllerStatus', 'zwavejs', 'none');
$driverStatus = config::byKey('driverStatus', 'zwavejs', 0);
if (!zwavejs::isRunning()) {
echo '<div id="div_driverStatus"><div class="alert alert-danger" role="alert"> {{Le démon Z-Wave n\'est pas démarré.}}</div></div>';
echo '<div id="div_driverStatus"><div class="alert alert-danger" role="alert"> {{Le démon Z-Wave nest pas démarré.}}</div></div>';
} else if ($driverStatus != 1) {
echo '<div id="div_driverStatus"><div class="alert alert-warning" role="alert"> {{Le driver Z-Wave n\'est pas initialisé, veuillez patienter. Si le message reste trop longtemps, veuillez vérifier la configuration du démon}}</div></div>';
echo '<div id="div_driverStatus"><div class="alert alert-warning" role="alert"> {{Le driver Z-Wave nest pas initialisé, veuillez patienter. Si le message reste trop longtemps, veuillez vérifier la configuration du démon}}</div></div>';
} else {
echo '<div id="div_driverStatus"></div>';
}
Expand Down

0 comments on commit 337330e

Please sign in to comment.