Update extension_edit.php (#7481)

Without this fix the setting for transcription always shows as enabled when editing the extension.
This commit is contained in:
Andy-Seattle
2025-09-10 12:17:45 -07:00
committed by GitHub
parent 65738dfb76
commit eb0b92823a

View File

@@ -1840,7 +1840,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";