From ace947217baa3ffea8ef39a7bf21ca54d4a89353 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 8 Oct 2012 22:43:06 +0000 Subject: [PATCH] Add fax destination number. --- app/fax/fax_edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/fax/fax_edit.php b/app/fax/fax_edit.php index 09b763f2c4..febb18dbd3 100644 --- a/app/fax/fax_edit.php +++ b/app/fax/fax_edit.php @@ -26,7 +26,6 @@ include "root.php"; require_once "includes/require.php"; require_once "includes/checkauth.php"; -require_once "app_languages.php"; if (permission_exists('fax_extension_add') || permission_exists('fax_extension_edit') || permission_exists('fax_extension_delete')) { //access granted } @@ -35,7 +34,8 @@ else { exit; } - //prepare the languages +//add multi-lingual support + require_once "app_languages.php"; foreach($content_fax as $key => $value) { $content_fax[$key] = $value[$_SESSION['domain']['language']['code']]; }