mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 08:55:15 +02:00
MDL-27901 navigation: Notice when an admin node name is already used
This commit is contained in:
parent
4bd6f71bad
commit
97a8edddf0
@ -929,6 +929,11 @@ class admin_category implements parentable_part_of_admin_tree {
|
||||
debugging('error - parts of tree can be inserted only into parentable parts');
|
||||
return false;
|
||||
}
|
||||
if (debugging('', DEBUG_DEVELOPER) && !is_null($this->locate($something->name))) {
|
||||
// The name of the node is already used, simply warn the developer that this should not happen.
|
||||
// It is intentional to check for the debug level before performing the check.
|
||||
debugging('Duplicate admin page name: ' . $something->name, DEBUG_DEVELOPER);
|
||||
}
|
||||
$parent->children[] = $something;
|
||||
if (is_array($this->category_cache) and ($something instanceof admin_category)) {
|
||||
if (isset($this->category_cache[$something->name])) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user