Skip to content

Commit

Permalink
MDL-19789 Upgraded calls to link_to_popup_window()
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Aug 20, 2009
1 parent 7f383c5 commit 8cc826b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backup/restore_form.html
Expand Up @@ -265,7 +265,7 @@
echo "</td>";
echo "<td><input type=\"text\" id=\"shortnamefield\" name=\"shortname\" maxlength=\"100\" size=\"20\" value=\"".s($form1->shortname)."\" alt=\"".get_string("shortname")."\" />" ;
echo $OUTPUT->help_icon(moodle_help_icon::make("courseshortname", get_string("shortname"))) ;
if (isset($err["shortname"])) formerr($err["shortname"]);
if (isset($err["shortname"])) echo $OUTPUT->error_text($err["shortname"]);
echo "</td>";
echo "</tr>";
echo "<tr valign=\"top\" >";
Expand All @@ -274,7 +274,7 @@
echo "</td>";
echo "<td><input type=\"text\" id=\"fullnamefield\" name=\"fullname\" maxlength=\"254\" size=\"50\" value=\"".s($form1->fullname)."\" alt=\" ".get_string("fullname")."\" />" ;
echo $OUTPUT->help_icon(moodle_help_icon::make("coursefullname", get_string("fullname"))) ;
if (isset($err["fullname"])) formerr($err["fullname"]);
if (isset($err["fullname"])) echo $OUTPUT->error_text($err["fullname"]);
echo"</td></tr>";
echo "<tr valign=\"top\"> ";
echo "<td align=\"right\"> ";
Expand Down

0 comments on commit 8cc826b

Please sign in to comment.