I think I found a typo while looking through uc_recurring.module

Here is a patch against bazaar.


=== modified file 'payment/uc_recurring/uc_recurring.module'
--- payment/uc_recurring/uc_recurring.module 2009-03-07 18:55:39 +0000
+++ payment/uc_recurring/uc_recurring.module 2009-03-18 01:27:33 +0000
@@ -437,21 +437,21 @@
'#label' => t('Recurring payment expires'),
'#module' => t('Recurring Payments'),
'#arguments' => array(
- 'order' => array('#entity' => 'order', '#lable' => t('Order')),
+ 'order' => array('#entity' => 'order', '#label' => t('Order')),
),
);
$events['fee_charge_successful'] = array(
'#label' => t('Payment is charged successfully'),
'#module' => t('Recurring Payments'),
'#arguments' => array(
- 'order' => array('#entity' => 'order', '#lable' => t('Order')),
+ 'order' => array('#entity' => 'order', '#label' => t('Order')),
),
);
$events['fee_charge_fails'] = array(
'#label' => t('Payment charge fails'),
'#module' => t('Recurring Payments'),
'#arguments' => array(
- 'order' => array('#entity' => 'order', '#lable' => t('Order')),
+ 'order' => array('#entity' => 'order', '#label' => t('Order')),
),
);

Comments

cha0s’s picture

Status: Active » Needs review

Looks good, the only three I found when grepping for "[^\w]lable[^\w]". ^^ Thank you.

rszrama’s picture

Version: 6.x-2.x-dev » 6.x-2.0-beta5
Status: Needs review » Fixed

Committed, thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.