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
Comment #1
cha0s commentedLooks good, the only three I found when grepping for "[^\w]lable[^\w]". ^^ Thank you.
Comment #2
rszrama commentedCommitted, thanks.