Skip to content

Commit

Permalink
MDL-26425 tablelib - fix tr class typo (detected @ MDL-27034)
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Apr 6, 2011
1 parent 5f27855 commit 11a6763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tablelib.php
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ function print_row($row, $classname = '') {
$rowclasses[] = $classname;
}

echo html_writer::start_tag('tr', array('class', implode(' ', $rowclasses)));
echo html_writer::start_tag('tr', array('class' => implode(' ', $rowclasses)));

// If we have a separator, print it
if ($row === NULL) {
Expand Down

0 comments on commit 11a6763

Please sign in to comment.