]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed xhtml issues. MDL-7861.
authorvyshane <vyshane>
Wed, 20 Dec 2006 02:38:10 +0000 (02:38 +0000)
committervyshane <vyshane>
Wed, 20 Dec 2006 02:38:10 +0000 (02:38 +0000)
course/report/participation/index.php

index 5daee93f9946408edd2d3890a90b4729ade23e16..e71c0acfb8152ee6dad5a8f59b0dfba4bbe27716 100644 (file)
     
     $baseurl =  $CFG->wwwroot.'/course/report/participation/index.php?id='.$course->id.'&amp;roleid='
         .$roleid.'&amp;instanceid='.$instanceid.'&amp;timefrom='.$timefrom.'&amp;moduleid='
-        .$moduleid.'&action='.$action.'&amp;perpage='.$perpage;
+        .$moduleid.'&amp;action='.$action.'&amp;perpage='.$perpage;
 
 
     // from here assume we have at least the module we're using.
@@ -334,7 +334,7 @@ function checknos() {
         echo '<input type="hidden" name="sesskey" value="'.$USER->sesskey.'" />';
 
         foreach ($users as $u) {
-            $data = array('<a href="'.$CFG->wwwroot.'/user/view.php?id='.$u->userid.'&course='.$course->id.'">'.fullname($u,true).'</a>',
+            $data = array('<a href="'.$CFG->wwwroot.'/user/view.php?id='.$u->userid.'&amp;course='.$course->id.'">'.fullname($u,true).'</a>',
                           ((!empty($u->count)) ? get_string('yes').' ('.$u->count.') ' : get_string('no')),
                           '<input type="checkbox" name="user'.$u->userid.'" value="'.$u->count.'" />',
                           );
@@ -359,10 +359,10 @@ function checknos() {
         $displaylist['messageselect.php'] = get_string('messageselectadd');
         choose_from_menu ($displaylist, "formaction", "", get_string("withselectedusers"), "if(checksubmit(this.form))this.form.submit();", "");
         helpbutton("participantswithselectedusers", get_string("withselectedusers"));
-        echo '<input type="submit" value="' . get_string('ok') . '"';
+        echo '<input type="submit" value="' . get_string('ok') . '" />';
         echo '</center></form>';
     }
     
     print_footer();
 
-?>
+?>
\ No newline at end of file