From 9711a8d2992a31b810df5cd68af9e1aa3a438bd3 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sat, 11 Jan 2003 18:18:59 +0000 Subject: [PATCH] the template is using a text area instead of an html area. --- lib/WebGUI/Wobject/SQLReport.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Wobject/SQLReport.pm b/lib/WebGUI/Wobject/SQLReport.pm index 6273b6c71..22c3989c1 100644 --- a/lib/WebGUI/Wobject/SQLReport.pm +++ b/lib/WebGUI/Wobject/SQLReport.pm @@ -69,7 +69,7 @@ sub www_edit { $f->yesNo("preprocessMacros",WebGUI::International::get(15,$namespace),$_[0]->get("preprocessMacros")); $f->yesNo("debugMode",WebGUI::International::get(16,$namespace),$_[0]->get("debugMode")); $f->textarea("dbQuery",WebGUI::International::get(4,$namespace),$_[0]->get("dbQuery")); - $f->HTMLArea("template",WebGUI::International::get(3,$namespace),$_[0]->get("template")); + $f->textarea("template",WebGUI::International::get(3,$namespace),$_[0]->get("template")); $f->text("DSN",WebGUI::International::get(5,$namespace),$dsn); $f->text("username",WebGUI::International::get(6,$namespace),$username); $f->password("identifier",WebGUI::International::get(7,$namespace),$_[0]->get("identifier"));