1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-06 00:43:02 +02:00

Merge branch '3.2.x'

* 3.2.x:
  [ticket/15084] fix wrong order of breadcrumbs on module management
This commit is contained in:
Tristan Darricau 2017-04-18 23:25:44 +02:00
commit 5566d03718
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -208,7 +208,7 @@ class module_manager
WHERE m1.module_class = '" . $this->db->sql_escape($module_class) . "'
AND m2.module_class = '" . $this->db->sql_escape($module_class) . "'
AND m1.module_id = $module_id
ORDER BY m2.left_id DESC";
ORDER BY m2.left_id";
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))