Update voicemail_edit.php (#7482)

Without this change the voicemail edit will always show the setting as True.
This commit is contained in:
Andy-Seattle
2025-09-10 12:13:11 -07:00
committed by GitHub
parent 5f166a3b9b
commit 65738dfb76

View File

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