Skip to content

Commit

Permalink
Make 'Edit profile" link blink, as a reminder, if not used yet
Browse files Browse the repository at this point in the history
  • Loading branch information
martin committed Jul 19, 2002
1 parent af978a6 commit 97b3785
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion course/topics.php
Expand Up @@ -49,7 +49,11 @@
print_simple_box("People", $align="CENTER", $width="100%", $color="$THEME->cellheading"); print_simple_box("People", $align="CENTER", $width="100%", $color="$THEME->cellheading");
$moddata[]="<A HREF=\"../user/index.php?id=$course->id\">List of all people</A>"; $moddata[]="<A HREF=\"../user/index.php?id=$course->id\">List of all people</A>";
$modicon[]="<IMG SRC=\"../user/users.gif\" HEIGHT=16 WIDTH=16 ALT=\"List of everyone\">"; $modicon[]="<IMG SRC=\"../user/users.gif\" HEIGHT=16 WIDTH=16 ALT=\"List of everyone\">";
$moddata[]="<A HREF=\"../user/view.php?id=$USER->id&course=$course->id\">Edit my profile</A>"; if ($USER->description) {
$moddata[]="<A HREF=\"../user/view.php?id=$USER->id&course=$course->id\">Edit my profile</A>";
} else {
$moddata[]="<A HREF=\"../user/view.php?id=$USER->id&course=$course->id\"><BLINK>Edit my profile</BLINK></A>";
}
$modicon[]="<IMG SRC=\"../user/user.gif\" HEIGHT=16 WIDTH=16 ALT=\"Me\">"; $modicon[]="<IMG SRC=\"../user/user.gif\" HEIGHT=16 WIDTH=16 ALT=\"Me\">";
print_side_block("", $moddata, "", $modicon); print_side_block("", $moddata, "", $modicon);


Expand Down

0 comments on commit 97b3785

Please sign in to comment.