bug fixes
This commit is contained in:
parent
03407a2a0e
commit
b7814f5139
3 changed files with 9 additions and 3 deletions
|
|
@ -7,6 +7,7 @@
|
|||
- fix [ 1238223 ] captcha image broken in WRE
|
||||
- fix [ 1288783 ] Captcha picture only works with the latest ImageMagick.
|
||||
- fix [ 1306915 ] Missing label on shortcut - Metadata
|
||||
- Fixed a pagination bug in the subscription code pagination.
|
||||
|
||||
|
||||
6.7.5
|
||||
|
|
|
|||
|
|
@ -100,6 +100,11 @@ authMethods = LDAP, WebGUI
|
|||
|
||||
paymentPlugins = ITransact
|
||||
|
||||
# Lisst the shipping plugins you have installed and wish to be
|
||||
# available for configuration on the site.
|
||||
|
||||
shippingPlugins = ByPrice, ByWeight, PerTransaction
|
||||
|
||||
# Specify a the list of assets you want to appear in your
|
||||
# Add Content menus.
|
||||
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@ sub www_listSubscriptionCodeBatches {
|
|||
|
||||
my $i18n = WebGUI::International->new("Subscription");
|
||||
|
||||
$p = WebGUI::Paginator->new('op=listSubscriptionCodeBatches');
|
||||
$p = WebGUI::Paginator->new(WebGUI::URL::page('op=listSubscriptionCodeBatches'));
|
||||
$p->setDataByQuery("select * from subscriptionCodeBatch");
|
||||
|
||||
$batches = $p->getPageData;
|
||||
|
|
@ -347,7 +347,7 @@ sub www_listSubscriptionCodes {
|
|||
return _submenu($output, 'listSubscriptionCodes title', 'subscription codes manage');
|
||||
}
|
||||
|
||||
$p = WebGUI::Paginator->new('op=listSubscriptionCodes'.$ops);
|
||||
$p = WebGUI::Paginator->new(WebGUI::URL::page('op=listSubscriptionCodes'.$ops));
|
||||
$p->setDataByQuery("select t1.*, t2.* from subscriptionCode as t1, subscriptionCodeBatch as t2 where t1.batchId=t2.batchId ".$where);
|
||||
|
||||
$codes = $p->getPageData;
|
||||
|
|
@ -383,7 +383,7 @@ sub www_listSubscriptions {
|
|||
|
||||
my $i18n = WebGUI::International->new("Subscription");
|
||||
|
||||
$p = WebGUI::Paginator->new('op=listSubscriptions');
|
||||
$p = WebGUI::Paginator->new(WebGUI::URL::page('op=listSubscriptions'));
|
||||
$p->setDataByQuery('select subscriptionId, name from subscription where deleted != 1');
|
||||
$subscriptions = $p->getPageData;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue