From ef043c693bfd9c4f195ebbb4a0d6de5f63a35525 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 11 Sep 2013 19:56:37 +0000 Subject: [PATCH] Account for fifo title, header and description. --- app/dialplan/dialplans.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/dialplan/dialplans.php b/app/dialplan/dialplans.php index eb48c01976..07d3c1c359 100644 --- a/app/dialplan/dialplans.php +++ b/app/dialplan/dialplans.php @@ -54,6 +54,9 @@ else { elseif ($app_uuid == "8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3") { $page["title"] = $text['title-outbound_routes']; } + elseif ($app_uuid == "16589224-c876-aeb3-f59f-523a1c0801f7") { + $page["title"] = $text['title-fifo']; + } elseif ($app_uuid == "4b821450-926b-175a-af93-a03c441818b1") { $page["title"] = $text['title-time_conditions']; } @@ -80,6 +83,9 @@ else { elseif ($app_uuid == "8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3") { echo " ".$text['header-outbound_routes']."\n"; } + elseif ($app_uuid == "16589224-c876-aeb3-f59f-523a1c0801f7") { + echo " ".$text['header-fifo']."\n"; + } elseif ($app_uuid == "4b821450-926b-175a-af93-a03c441818b1") { echo " ".$text['header-time_conditions']."\n"; } @@ -108,6 +114,9 @@ else { elseif ($app_uuid == "8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3") { echo $text['description-outbound_routes']; } + elseif ($app_uuid == "16589224-c876-aeb3-f59f-523a1c0801f7") { + echo $text['description-fifo']; + } elseif ($app_uuid == "4b821450-926b-175a-af93-a03c441818b1") { echo $text['description-time_conditions']; }