mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/15084] fix wrong order of breadcrumbs on module management
PHPBB3-15084
This commit is contained in:
parent
59ad9401d9
commit
568ce32ca8
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ class module_manager
|
||||||
WHERE m1.module_class = '" . $this->db->sql_escape($module_class) . "'
|
WHERE m1.module_class = '" . $this->db->sql_escape($module_class) . "'
|
||||||
AND m2.module_class = '" . $this->db->sql_escape($module_class) . "'
|
AND m2.module_class = '" . $this->db->sql_escape($module_class) . "'
|
||||||
AND m1.module_id = $module_id
|
AND m1.module_id = $module_id
|
||||||
ORDER BY m2.left_id DESC";
|
ORDER BY m2.left_id";
|
||||||
$result = $this->db->sql_query($sql);
|
$result = $this->db->sql_query($sql);
|
||||||
|
|
||||||
while ($row = $this->db->sql_fetchrow($result))
|
while ($row = $this->db->sql_fetchrow($result))
|
||||||
|
|
Loading…
Add table
Reference in a new issue