- Fixed a problem with JSON formatting in spectre config transaction.

This commit is contained in:
JT Smith 2007-03-08 16:55:48 +00:00
parent 75e6ba400b
commit 239e68d476
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@
right right
- fix: Linking Pages - fix: Linking Pages
- Enhanced HTTP caching directives. - 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 - 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) Event template variable called urlSearch to handle it. (perlDreamer Consulting, LLC)
- fix: Set default groupIdEditEvent to groupIdEdit during upgrade (perlDreamer Consulting, LLC) - fix: Set default groupIdEditEvent to groupIdEdit during upgrade (perlDreamer Consulting, LLC)
@ -28,6 +29,7 @@
7.3.11 7.3.11
- Added an option for enabling coverage tests to testCodebase.pl. - 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: Tiny MCE--> Relative Absolute URL for Images IE and Firefox different
- fix: WeatherData asset not displaying properly - fix: WeatherData asset not displaying properly
- rfe: Weather-Data not only for US-Cities - rfe: Weather-Data not only for US-Cities

View file

@ -78,7 +78,7 @@ sub www_spectreGetSiteData {
} }
$siteData{cron} = \@schedules; $siteData{cron} = \@schedules;
} }
return JSON::objToJson(\%siteData); return JSON::objToJson(\%siteData,{autoconv=>0, skipinvalid=>1});
} }
#------------------------------------------------------------------- #-------------------------------------------------------------------