BRANCH MERGE

These are the changes from MOODLE_13_STABLE, merged into trunk

The tag MOODLE_13_MERGED on the MOODLE_13_STABLE branch now refers to this point

The biggest changes here are the fixes for HTML editor in all standard modules
This commit is contained in:
moodler 2004-06-04 06:17:30 +00:00
parent 308214e87e
commit 7613890851
49 changed files with 175 additions and 198 deletions

View file

@ -1654,11 +1654,11 @@ function use_html_editor($name="") {
echo "<script language=\"javascript\" type=\"text/javascript\" defer=\"1\">\n";
if (empty($name)) {
echo "HTMLArea.replaceAll();";
echo "HTMLArea.replaceAll();\n";
} else {
echo "HTMLArea.replace('$name')";
echo "HTMLArea.replace('$name');\n";
}
echo "</script>";
echo "</script>\n";
}