From: moodler <moodler>
Date: Mon, 28 Apr 2003 04:55:31 +0000 (+0000)
Subject: Fixed user images
X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=95abee03e662ed8d7c9e1ac16f378bd6e7f71f02;p=moodle.git

Fixed user images
---

diff --git a/course/social.php b/course/social.php
index aae3dce78c..c66700ba5c 100644
--- a/course/social.php
+++ b/course/social.php
@@ -12,16 +12,16 @@
   <TR>
     <TD WIDTH="<?=$leftwidth?>" VALIGN="TOP"> 
       <? 
-      $moddata[]="<A TITLE=\"".get_string("listofallpeople")."\" HREF=\"../user/index.php?id=$course->id\">".get_string("participants")."</A>";
-      $modicon[]="<IMG SRC=\"../user/users.gif\" HEIGHT=16 WIDTH=16 ALT=\"\">";
-      $editmyprofile = "<A TITLE=\"$USER->firstname $USER->lastname\" HREF=\"../user/edit.php?id=$USER->id&course=$course->id\">".
+      $moddata[]="<a title=\"".get_string("listofallpeople")."\" href=\"../user/index.php?id=$course->id\">".get_string("participants")."</a>";
+      $modicon[]="<img src=\"$pixpath/i/users.gif\" height=16 width=16 alt=\"\">";
+      $editmyprofile = "<a title=\"$USER->firstname $USER->lastname\" href=\"../user/edit.php?id=$USER->id&course=$course->id\">".
                         get_string("editmyprofile")."</A>";
       if ($USER->description) {
           $moddata[]= $editmyprofile;
       } else {
-          $moddata[]= $editmyprofile." <BLINK>*</BLINK>";
+          $moddata[]= $editmyprofile." <blink>*</blink>";
       }
-      $modicon[]="<IMG SRC=\"../user/user.gif\" HEIGHT=16 WIDTH=16 ALT=\"\">";
+      $modicon[]="<img src=\"$pixpath/i/user.gif\" height=16 width=16 alt=\"\">";
       print_side_block(get_string("people"), "", $moddata, $modicon, "", $leftwidth);