String 'returns'&'noreturns' added to authorize strings array. (get string fast)

This commit is contained in:
ethem
2006-04-24 16:54:59 +00:00
parent efd0eb0d29
commit db763a8a91
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
$authstrs = get_strings(array('paymentmanagement','orderid','void','capture','refund','delete',
'authcaptured','authorizedpendingcapture','capturedpendingsettle','capturedsettled',
'settled','refunded','cancelled','expired','tested',
'transid','settlementdate','notsettled','amount',
'transid','settlementdate','notsettled','amount','returns','noreturns',
'howmuch','captureyes','unenrolstudent'), 'enrol_authorize');
/// Print header
+2 -2
View File
@@ -425,7 +425,7 @@ function authorize_print_order_details($orderno)
$table->data[] = array("<b>$strs->action</b>", $actions);
print_table($table);
if ($settled) { // show refunds.
echo "<h4>" . get_string('returns', 'enrol_authorize') . "</h4>\n";
echo "<h4>" . $authstrs->returns . "</h4>\n";
$t2->size = array('15%', '15%', '20%', '35%', '15%');
$t2->align = array('right', 'right', 'right', 'left', 'right');
$t2->head = array($authstrs->transid,
@@ -455,7 +455,7 @@ function authorize_print_order_details($orderno)
}
}
else {
$t2->data[] = array(get_string('noreturns', 'enrol_authorize'));
$t2->data[] = $authstrs->noreturns;
}
print_table($t2);
}