Default value for create recording should always be false

This commit is contained in:
FusionPBX 2024-09-20 23:08:28 -06:00 committed by GitHub
parent 98e7eb725f
commit 665bb0e802
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -459,8 +459,8 @@
}
else {
echo " <select class='formfld' id='create_recording' name='create_recording'>\n";
echo " <option value='true' ".($create_recording == 'true' ? "selected='selected'" : null).">".$text['option-true']."</option>\n";
echo " <option value='false' ".($create_recording == 'false' ? "selected='selected'" : null).">".$text['option-false']."</option>\n";
echo " <option value='true'>".$text['option-true']."</option>\n";
echo " <option value='false' selected='selected'>".$text['option-false']."</option>\n";
echo " </select>\n";
}
echo "<br />\n";