Put back. String 'returns'&'noreturns' are used only in one order. Not general.

This commit is contained in:
ethem 2006-04-24 17:03:42 +00:00
parent db763a8a91
commit cb845f37ae
2 changed files with 3 additions and 3 deletions

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','returns','noreturns',
'transid','settlementdate','notsettled','amount',
'howmuch','captureyes','unenrolstudent'), 'enrol_authorize');
/// Print header

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>" . $authstrs->returns . "</h4>\n";
echo "<h4>" . get_string('returns', 'enrol_authorize') . "</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[] = $authstrs->noreturns;
$t2->data[] = array(get_string('noreturns', 'enrol_authorize'));
}
print_table($t2);
}