From 52614e4a219d42abecfe1777027a1fe5f979f27c Mon Sep 17 00:00:00 2001 From: AlexC <40072887+alexdcrane@users.noreply.github.com> Date: Thu, 20 Jan 2022 16:00:54 -0700 Subject: [PATCH] Update voicemails.php (#6250) --- app/voicemails/voicemails.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/voicemails/voicemails.php b/app/voicemails/voicemails.php index 968c227fa5..a0c591de28 100644 --- a/app/voicemails/voicemails.php +++ b/app/voicemails/voicemails.php @@ -229,14 +229,14 @@ echo "
| \n"; echo " \n"; echo " | \n"; } + if ($_GET['show'] == "all" && permission_exists('voicemail_all')) { + echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param, "class='shrink'"); + } echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order); echo th_order_by('voicemail_mail_to', $text['label-voicemail_mail_to'], $order_by, $order, null, "class='hide-sm-dn'"); echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order, null, "class='center hide-md-dn'");
|---|