]> git.mjollnir.org Git - moodle.git/commitdiff
'deleted uh comments'
authorurs_hunkler <urs_hunkler>
Tue, 6 Feb 2007 20:44:16 +0000 (20:44 +0000)
committerurs_hunkler <urs_hunkler>
Tue, 6 Feb 2007 20:44:16 +0000 (20:44 +0000)
course/format/topics/format.php

index 5b8d71866941ff4ae8a3a9eb30c6cd867e03c14e..91e1681ff8d7ba18aa095549a780079dcc4b8483 100644 (file)
     echo '<table id="layout-table" cellspacing="0" summary="'.get_string('layouttable').'"><tr>';
 
 /// The left column ...
-// uh-changes start
     $lt = (empty($THEME->layouttable)) ? array('left', 'middle', 'right') : $THEME->layouttable;
     foreach ($lt as $column) {
         switch ($column) {
             case 'left':
-// uh-changes end
 
     if (blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $editing) {
         echo '<td style="width:'.$preferred_width_left.'px" id="left-column">';
-// uh-changes start
         if (!empty($THEME->roundcorners)) {
             echo '<div class="bt"><div></div></div>';
             echo '<div class="i1"><div class="i2"><div class="i3">';
         }
-// uh-changes end
         blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT);
-// uh-changes start
         if (!empty($THEME->roundcorners)) {
             echo '</div></div></div>';
             echo '<div class="bb"><div></div></div>';
         }
-// uh-changes end
         echo '</td>';
     }
 
-// uh-changes start
             break;
             case 'middle':
-// uh-changes end
 /// Start main column
     echo '<td id="middle-column">';
-// uh-changes start
     if (!empty($THEME->roundcorners)) {
         echo '<div class="bt"><div></div></div>';
         echo '<div class="i1"><div class="i2"><div class="i3">';
     }
-    // uh-changes end
     echo '<a name="startofcontent"></a>';
 
     print_heading_block(get_string('topicoutline'), 'outline');
         echo '</div>';
     }
 
-// uh-changes start
     if (!empty($THEME->roundcorners)) {
         echo '</div></div></div>';
         echo '<div class="bb"><div></div></div>';
     }
-// uh-changes end
     echo '</td>';
 
-// uh-changes start
             break;
             case 'right':
-// uh-changes end
     // The right column
     if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) {
         echo '<td style="width:'.$preferred_width_right.'px" id="right-column">';
-// uh-changes start
         if (!empty($THEME->roundcorners)) {
             echo '<div class="bt"><div></div></div>';
             echo '<div class="i1"><div class="i2"><div class="i3">';
         }
-// uh-changes end
         blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
-// uh-changes start
         if (!empty($THEME->roundcorners)) {
             echo '</div></div></div>';
             echo '<div class="bb"><div></div></div>';
         }
-// uh-changes end
         echo '</td>';
     }
 
-// uh-changes start
             break;
         }
     }
-// uh-changes end
     echo '</tr></table>';
     
 ?>