From 34de4d1262faa8e92fcfa73873b3d578bd8cfc23 Mon Sep 17 00:00:00 2001 From: Len Kranendonk Date: Thu, 11 Nov 2004 12:31:01 +0000 Subject: [PATCH] Slash_gatewayUrl should return scriptUrl, not siteUrl --- docs/changelog/6.x.x.txt | 5 +++-- lib/WebGUI/Macro/Slash_gatewayUrl.pm | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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(); }