From 239e68d476f331ea00f9be9657c0d0810708f00c Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 8 Mar 2007 16:55:48 +0000 Subject: [PATCH] - Fixed a problem with JSON formatting in spectre config transaction. --- docs/changelog/7.x.x.txt | 2 ++ lib/WebGUI/Operation/Spectre.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index e47c3e63a..d7b843dae 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -9,6 +9,7 @@ right - fix: Linking Pages - Enhanced HTTP caching directives. + - Fixed a problem with JSON formatting in spectre config transaction. - fix: Fixing bad link on the Event page to the search engine. Added a new Event template variable called urlSearch to handle it. (perlDreamer Consulting, LLC) - fix: Set default groupIdEditEvent to groupIdEdit during upgrade (perlDreamer Consulting, LLC) @@ -28,6 +29,7 @@ 7.3.11 - Added an option for enabling coverage tests to testCodebase.pl. + - fix: IE and Firefox- linking WebGUI Images - fix: Tiny MCE--> Relative Absolute URL for Images IE and Firefox different - fix: WeatherData asset not displaying properly - rfe: Weather-Data not only for US-Cities diff --git a/lib/WebGUI/Operation/Spectre.pm b/lib/WebGUI/Operation/Spectre.pm index dd4bf1b38..2c3d0a724 100644 --- a/lib/WebGUI/Operation/Spectre.pm +++ b/lib/WebGUI/Operation/Spectre.pm @@ -78,7 +78,7 @@ sub www_spectreGetSiteData { } $siteData{cron} = \@schedules; } - return JSON::objToJson(\%siteData); + return JSON::objToJson(\%siteData,{autoconv=>0, skipinvalid=>1}); } #-------------------------------------------------------------------