Slash_gatewayUrl should return scriptUrl, not siteUrl

This commit is contained in:
Len Kranendonk 2004-11-11 12:31:01 +00:00
parent b77e3c8747
commit 34de4d1262
2 changed files with 4 additions and 3 deletions

View file

@ -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.

View file

@ -16,7 +16,7 @@ use WebGUI::URL;
#-------------------------------------------------------------------
sub process {
return WebGUI::URL::getSiteURL();
return WebGUI::URL::getScriptURL();
}