mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix usage of single quotes, double quotes needed
This commit is contained in:
@@ -194,11 +194,11 @@ echo " </select>
|
||||
<div class='col-sm-4'>
|
||||
<select id='cryptoalgo' name='cryptoalgo' class='form-control'>
|
||||
<option value='AES'>AES</option>
|
||||
<option value='DES' ".($device['cryptoalgo'] === 'DES' ? 'selected' : '').'>DES</option>
|
||||
<option value='DES' ".($device['cryptoalgo'] === 'DES' ? 'selected' : '').">DES</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
||||
</div>";
|
||||
|
||||
if ($config['distributed_poller'] === true) {
|
||||
echo '
|
||||
|
Reference in New Issue
Block a user