webgui/lib/WebGUI/Macro/SubscriptionItemPurchaseUrl.pm
JT Smith ea868a8c0e moved uploadsAccessHandler into the main webgui handler mechanism
converted macros to use references
fixed some other various bugs
2005-11-07 01:40:07 +00:00

10 lines
168 B
Perl

package WebGUI::Macro::SubscriptionItemPurchaseUrl;
use strict;
use WebGUI::URL;
sub process {
return WebGUI::URL::page('op=purchaseSubscription;sid='.shift);
}
1;