From: moodler Date: Thu, 30 Sep 2004 08:35:24 +0000 (+0000) Subject: Fixing display of costs X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c6edaf80db8e71766aa16bef10789785633670a8;p=moodle.git Fixing display of costs --- diff --git a/enrol/paypal/enrol.php b/enrol/paypal/enrol.php index 13ab1f3153..f30f2cec0c 100644 --- a/enrol/paypal/enrol.php +++ b/enrol/paypal/enrol.php @@ -90,9 +90,8 @@ function get_access_icons($course) { default: $currency = '$'; break; } - $str .= "

$strcost: ". - "wwwroot/course/view.php?id=$course->id\">"; - $str .= "$currency".format_float($cost,2).'

'; + $str .= ''.$strcost.': '; + $str .= $currency.format_float($cost,2).''; }