From 1c33da948ef125642a07f691077153433c19f901 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Fri, 2 May 2014 16:14:06 -0400 Subject: [PATCH] Removed per-instance application.ini customizations --- airtime_mvc/public/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index b4fd27b33..3d53b9e22 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -47,7 +47,8 @@ if (file_exists('/usr/share/php/libzend-framework-php')) { require_once 'Zend/Application.php'; $application = new Zend_Application( APPLICATION_ENV, - $_SERVER["AIRTIME_APPINI"] + //$_SERVER["AIRTIME_APPINI"] // Old SaaS customization that's no longer needed -- Albert May 2, 2014 + APPLICATION_PATH . '/configs/application.ini' ); require_once (APPLICATION_PATH."/logging/Logging.php");