diff --git a/lib/outputcomponents.php b/lib/outputcomponents.php index e3080b1a694..d3091751e70 100644 --- a/lib/outputcomponents.php +++ b/lib/outputcomponents.php @@ -1052,9 +1052,6 @@ class html_writer { * @return string HTML fragment */ public static function attribute($name, $value) { - if (is_array($value)) { - debugging("Passed an array for the HTML attribute $name", DEBUG_DEVELOPER); - } if ($value instanceof moodle_url) { return ' ' . $name . '="' . $value->out() . '"'; }