diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index a4b331e96..30a3f497a 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -1,4 +1,5 @@ 6.6.2 + - fix [ 1217865 ] typo in EditableToggle.pm - RFE [ 1216056 ] Template names not specific enough - fix [ 1210493 ] mistypo in query in thread.pm in table name - Fixed a bug in the ITransact plugin that did not handle months with 31 days. diff --git a/lib/WebGUI/Macro/EditableToggle.pm b/lib/WebGUI/Macro/EditableToggle.pm index 9f77cc7a4..d8ff60a93 100644 --- a/lib/WebGUI/Macro/EditableToggle.pm +++ b/lib/WebGUI/Macro/EditableToggle.pm @@ -36,6 +36,7 @@ sub process { return WebGUI::Asset::Template->newByUrl($param[2])->process(\%var); } else { return WebGUI::Asset::Template->new("PBtmpl0000000000000038")->process(\%var); + } } return ""; }