MDL-38309 fix whitespace issues

This commit is contained in:
Dan Poltawski 2013-04-15 10:26:53 +01:00
parent 7e155b96fb
commit 3d7414b399
2 changed files with 2 additions and 2 deletions

View file

@ -4596,8 +4596,8 @@ function convert_tree_to_html($tree, $row=0) {
function convert_tabrows_to_tree($tabrows, $selected, $inactive, $activated) { function convert_tabrows_to_tree($tabrows, $selected, $inactive, $activated) {
debugging('Function convert_tabrows_to_tree() is deprecated since Moodle 2.5. Consider using class tabtree', DEBUG_DEVELOPER); debugging('Function convert_tabrows_to_tree() is deprecated since Moodle 2.5. Consider using class tabtree', DEBUG_DEVELOPER);
/// Work backwards through the rows (bottom to top) collecting the tree as we go.
// Work backwards through the rows (bottom to top) collecting the tree as we go.
$tabrows = array_reverse($tabrows); $tabrows = array_reverse($tabrows);
$subtree = array(); $subtree = array();

View file

@ -2953,7 +2953,7 @@ EOD;
$str .= $this->render_tabobject($tabtree); $str .= $this->render_tabobject($tabtree);
$str .= html_writer::end_tag('div'). $str .= html_writer::end_tag('div').
html_writer::tag('div', ' ', array('class' => 'clearer')); html_writer::tag('div', ' ', array('class' => 'clearer'));
return $str; return $str;
} }
/** /**