Add three new permissions fax_subject, fax_message, and fax_footer.

This commit is contained in:
FusionPBX 2021-06-09 10:56:10 -06:00 committed by GitHub
parent c5209d24e6
commit c4219d7fe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 30 deletions

View File

@ -1085,6 +1085,7 @@ if (!$included) {
echo "</td>\n";
echo "</tr>\n";
if (permission_exists('fax_subject')) {
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
echo " ".$text['label-fax-subject']."\n";
@ -1095,7 +1096,9 @@ if (!$included) {
echo " ".$text['description-fax-subject']."\n";
echo "</td>\n";
echo "</tr>\n";
}
if (permission_exists('fax_message')) {
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
echo " ".$text['label-fax-message']."\n";
@ -1106,7 +1109,9 @@ if (!$included) {
echo " ".$text['description-fax-message']."\n";
echo "</td>\n";
echo "</tr>\n";
}
if (permission_exists('fax_footer')) {
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
echo " ".$text['label-fax-footer']."\n";
@ -1117,6 +1122,7 @@ if (!$included) {
echo " ".$text['description-fax-footer']."\n";
echo "</td>\n";
echo "</tr>\n";
}
echo "</table>";
echo "<br /><br />\n";