From db763a8a912778d5b75304cd583e0eb4304de756 Mon Sep 17 00:00:00 2001 From: ethem Date: Mon, 24 Apr 2006 16:54:59 +0000 Subject: [PATCH] String 'returns'&'noreturns' added to authorize strings array. (get string fast) --- enrol/authorize/index.php | 2 +- enrol/authorize/locallib.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/enrol/authorize/index.php b/enrol/authorize/index.php index 857182d1c7..436bce0292 100644 --- a/enrol/authorize/index.php +++ b/enrol/authorize/index.php @@ -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 diff --git a/enrol/authorize/locallib.php b/enrol/authorize/locallib.php index a596125cf8..7e792947d5 100644 --- a/enrol/authorize/locallib.php +++ b/enrol/authorize/locallib.php @@ -425,7 +425,7 @@ function authorize_print_order_details($orderno) $table->data[] = array("$strs->action", $actions); print_table($table); if ($settled) { // show refunds. - echo "

" . get_string('returns', 'enrol_authorize') . "

\n"; + echo "

" . $authstrs->returns . "

\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); } -- 2.39.5