Ver Fonte

[svn r12660] Minor - fix dangerous missing ;

Yannick Warnier há 17 anos atrás
pai
commit
4b8a052b3d
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      main/course_home/activity.php

+ 3 - 3
main/course_home/activity.php

@@ -398,13 +398,13 @@ if(api_is_allowed_to_edit())
 	<div class="courseadminview">
 		<span class="viewcaption"><?php echo get_lang("Interaction") ?></span>
 		<table width="100%">
-			<?php show_tools_category(TOOL_INTERACTION) ?>
+			<?php show_tools_category(TOOL_INTERACTION); ?>
 		</table>
 	</div>
 	<div class="courseadminview">
 		<span class="viewcaption"><?php echo get_lang("Administration") ?></span>
 		<table width="100%">
-			<?php show_tools_category(TOOL_ADMIN_PLATEFORM) ?>
+			<?php show_tools_category(TOOL_ADMIN_PLATEFORM); ?>
 		</table>
 	</div>
 	<?php
@@ -420,7 +420,7 @@ else{
 	<div class="Authoringview">
 
 		<table width="100%">
-			<?php show_tools_category(TOOL_STUDENT_VIEW) ?>
+			<?php show_tools_category(TOOL_STUDENT_VIEW); ?>
 		</table>
 	</div>
 <?php