From: stronk7 Date: Mon, 2 Apr 2007 22:03:03 +0000 (+0000) Subject: Fixed one wrong urlencode after error. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0746aeca034b528d8c568992fd999fbed1d353a1;p=moodle.git Fixed one wrong urlencode after error. Merged from MOODLE_18_STABLE --- diff --git a/admin/xmldb/actions/edit_table_save/edit_table_save.class.php b/admin/xmldb/actions/edit_table_save/edit_table_save.class.php index a2afd3c218..e398b011c5 100644 --- a/admin/xmldb/actions/edit_table_save/edit_table_save.class.php +++ b/admin/xmldb/actions/edit_table_save/edit_table_save.class.php @@ -107,7 +107,7 @@ class edit_table_save extends XMLDBAction { "" . $this->str['administration'] . " -> XMLDB"); notice ('

' .implode(', ', $errors) . '

' . $temptable->readableInfo(), - 'index.php?action=edit_table&table=' . $tableparam . '&dir=' . str_replace($CFG->dirroot, '', urlencode($dirpath))); + 'index.php?action=edit_table&table=' . $tableparam . '&dir=' . urlencode(str_replace($CFG->dirroot, '', $dirpath))); die; /// re-die :-P }