From 59f05b16023efac6b8e61ceb0b175049d5ae7c93 Mon Sep 17 00:00:00 2001 From: Eloy Lafuente Date: Wed, 30 Dec 2009 18:00:34 +0000 Subject: [PATCH] NOBUG: Fix use of output_tag() causing warnings here and there. --- lib/outputrenderers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputrenderers.php b/lib/outputrenderers.php index 5341e18af6..949cce8497 100644 --- a/lib/outputrenderers.php +++ b/lib/outputrenderers.php @@ -1958,7 +1958,7 @@ class core_renderer extends renderer_base { } if ($table->rotateheaders) { // we need to wrap the heading content - $heading->text = $this->output_tag('span', '', $heading->text); + $heading->text = $this->output_tag('span', null, $heading->text); } $attributes = array( -- 2.39.5