From: ethem Date: Mon, 24 Apr 2006 16:54:59 +0000 (+0000) Subject: String 'returns'&'noreturns' added to authorize strings array. (get string fast) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=db763a8a912778d5b75304cd583e0eb4304de756;p=moodle.git String 'returns'&'noreturns' added to authorize strings array. (get string fast) --- 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); }