moodle/blog/footer.php

41 lines
917 B
PHP
Raw Normal View History

2006-03-10 06:53:01 +00:00
</td>
</tr>
</table>
</td>
<?php
print '<!-- End page content -->'."\n";
// The right column
if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) {
echo '<td style="vertical-align: top; width: '. $preferred_width_right .'px;">';
echo '<!-- Begin right side blocks -->'."\n";
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
print_spacer(1, 120, true);
echo '<!-- End right side blocks -->'."\n";
echo '</td>';
}
?>
</tr>
</table>
<?php
2006-04-24 03:36:02 +00:00
// Janne comment: Let's move this in here
// so IE gets more time to load the
// Page.
if (isset($usehtmleditor) && $usehtmleditor) {
// Janne comment: there are two text fields in form
// so lets try to replace them both with
// HTMLArea editors
use_html_editor();
}
2006-04-24 03:36:02 +00:00
if (isset($course) && ($course->id)) {
2006-03-10 06:53:01 +00:00
print_footer($course);
} else {
print_footer();
}
2006-04-24 03:36:02 +00:00
?>