moodle/blog/footer.php
skodak e96f2a77db Code cleanup in blog.
MDL-6805  Fixed redirects in blog; MDL-6807  partially fixed use of capabilitites - it needs more testing and possibly minor fixing, the commit contains other blog bugfixes too. In general it should work exactly the same. The introduction of roles makes proper setup more difficult :-(

Expect some more fixes soon, no other bigger changes...
2006-10-06 10:11:52 +00:00

26 lines
556 B
PHP

</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
print_footer($course);
?>