From 1be1acd4245a613d48a4add4b559be0495443e89 Mon Sep 17 00:00:00 2001 From: "Christophe.Boulain" <> Date: Tue, 15 Sep 2009 08:23:47 +0000 Subject: Fixed issue#198 : "Undefined variable: tagName" after error in application configuration. --- HISTORY | 1 + framework/TApplication.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 2a5077e4..a541b39b 100644 --- a/HISTORY +++ b/HISTORY @@ -1,6 +1,7 @@ Version 3.1.7 To be released BUG: Issue#166 - E_NOTICE level error in TDataGatewayCommand (Carl) BUG: Issue#157 - Enabled does not work properly on TActiveRadioButton/CheckBoxList controls (Bradley, Carl) +BUG: Issue#198 - "Undefined variable: tagName" after error in application configuration. (Christophe) Version 3.1.6 July 22, 2009 BUG: Issue#98 - Missing file in quickstart demo (Chrisotphe) diff --git a/framework/TApplication.php b/framework/TApplication.php index 1901506b..221c3c70 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -1311,7 +1311,7 @@ class TApplicationConfiguration extends TComponent break; } default: - throw new TConfigurationException('appconfig_paths_invalid',$tagName); + throw new TConfigurationException('appconfig_paths_invalid',$element->getTagName()); } } } -- cgit v1.2.3