Add three new permissions fax_subject, fax_message, and fax_footer.
This commit is contained in:
parent
c5209d24e6
commit
c4219d7fe0
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue