diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 51e0c7672..bdf76b590 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -1,6 +1,7 @@ 6.3.0 - - Added a "Position" property to the DataForm Edit Field interface. This makes it easier to move a field to a certain position. - - Added the variables "record.edit.icon", "record.delete.url" and "record.delete.icon" to the DataForm DataList template. + - Fixed the Slash_gatewayUrl macro. + - Added a "Position" property to the DataForm Edit Field interface. This makes it easier to move a field to a certain position. (Len Kranendonk). + - Added the variables "record.edit.icon", "record.delete.url" and "record.delete.icon" to the DataForm DataList template. (Len Kranendonk). - Converted all confirmation pages to client-side confirmation dialogs. Saves a pageload. (Len Kranendonk). - Added a new, more user-friendly administrative console. diff --git a/lib/WebGUI/Macro/Slash_gatewayUrl.pm b/lib/WebGUI/Macro/Slash_gatewayUrl.pm index a719c101f..d5a659130 100644 --- a/lib/WebGUI/Macro/Slash_gatewayUrl.pm +++ b/lib/WebGUI/Macro/Slash_gatewayUrl.pm @@ -16,7 +16,7 @@ use WebGUI::URL; #------------------------------------------------------------------- sub process { - return WebGUI::URL::getSiteURL(); + return WebGUI::URL::getScriptURL(); }