mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-8039 formslib Form id collission with body id when editing course, user details, etc.
This commit is contained in:
parent
18ec5433bb
commit
72f46d119b
@ -109,8 +109,7 @@ class moodleform {
|
||||
$action = strip_querystring(qualified_me());
|
||||
}
|
||||
|
||||
//strip '_form' from the end of class name to make form name attribute.
|
||||
$this->_formname = preg_replace('/_form$/', '', get_class($this), 1);
|
||||
$this->_formname = get_class($this); // '_form' suffix kept in order to prevent collisions of form id and other element
|
||||
$this->_customdata = $customdata;
|
||||
$this->_form =& new MoodleQuickForm($this->_formname, $method, $action, $target, $attributes);
|
||||
$this->set_upload_manager(new upload_manager());
|
||||
|
Loading…
x
Reference in New Issue
Block a user