mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
e96f2a77db
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...
26 lines
556 B
PHP
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);
|
|
?>
|