[Aimmath-commit] moodle/mod/math_assignment texedit.php,1.1,1.2
Brought to you by:
gustav_delius,
npstrick
|
From: <ma...@us...> - 2003-09-24 11:56:13
|
Update of /cvsroot/aimmath/moodle/mod/math_assignment
In directory sc8-pr-cvs1:/tmp/cvs-serv30827/mod/math_assignment
Modified Files:
texedit.php
Log Message:
Fixed a minor bug ($navigation being appended to before it was set)
Index: texedit.php
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/texedit.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** texedit.php 24 Sep 2003 10:58:25 -0000 1.1
--- texedit.php 24 Sep 2003 11:56:10 -0000 1.2
***************
*** 28,32 ****
$strmath_assignments = get_string("modulenameplural", "math_assignment");
$streditfile = get_string("edit", "", "<B>$file</B>");
! $navigation .= "<a href=\"../../course/view.php?id=$course->id\">$course->shortname</a> -> ".
"<a href=\"index.php?id=$course->id\">$strmath_assignments</a> -> ".
"<a href=\"view.php?q=$id\">$math_assignment->name</a> -> ".$streditfile;
--- 28,32 ----
$strmath_assignments = get_string("modulenameplural", "math_assignment");
$streditfile = get_string("edit", "", "<B>$file</B>");
! $navigation = "<a href=\"../../course/view.php?id=$course->id\">$course->shortname</a> -> ".
"<a href=\"index.php?id=$course->id\">$strmath_assignments</a> -> ".
"<a href=\"view.php?q=$id\">$math_assignment->name</a> -> ".$streditfile;
|