diff options
author | Rubén Calvo <rubencm@gmail.com> | 2017-02-10 23:22:14 +0100 |
---|---|---|
committer | Rubén Calvo <rubencm@gmail.com> | 2017-03-13 22:23:09 +0100 |
commit | 568ce32ca85cbf30f510ce7f87ad05c423d48158 (patch) | |
tree | 698226b66ab1f57bafbe7067b7f5781f48af2dd3 /phpBB/phpbb/module | |
parent | 59ad9401d9db8c6b6612f01f7b295f12c4cdccf7 (diff) | |
download | forums-568ce32ca85cbf30f510ce7f87ad05c423d48158.tar forums-568ce32ca85cbf30f510ce7f87ad05c423d48158.tar.gz forums-568ce32ca85cbf30f510ce7f87ad05c423d48158.tar.bz2 forums-568ce32ca85cbf30f510ce7f87ad05c423d48158.tar.xz forums-568ce32ca85cbf30f510ce7f87ad05c423d48158.zip |
[ticket/15084] fix wrong order of breadcrumbs on module management
PHPBB3-15084
Diffstat (limited to 'phpBB/phpbb/module')
-rw-r--r-- | phpBB/phpbb/module/module_manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/module/module_manager.php b/phpBB/phpbb/module/module_manager.php index 7ae16cdb61..67bac5b33e 100644 --- a/phpBB/phpbb/module/module_manager.php +++ b/phpBB/phpbb/module/module_manager.php @@ -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)) |