diff options
author | Tristan Darricau <github@nicofuma.fr> | 2017-04-18 23:25:20 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2017-04-18 23:25:20 +0200 |
commit | d4f0c79b565f558180225027039ec6494131f85e (patch) | |
tree | 1bf5d35723fce73042d87508be6e73ffbff4a666 | |
parent | bd220f233ab7a3142baa57c7a8220aad3ee943b4 (diff) | |
parent | 568ce32ca85cbf30f510ce7f87ad05c423d48158 (diff) | |
download | forums-d4f0c79b565f558180225027039ec6494131f85e.tar forums-d4f0c79b565f558180225027039ec6494131f85e.tar.gz forums-d4f0c79b565f558180225027039ec6494131f85e.tar.bz2 forums-d4f0c79b565f558180225027039ec6494131f85e.tar.xz forums-d4f0c79b565f558180225027039ec6494131f85e.zip |
Merge pull request #4692 from rubencm/ticket/15084
[ticket/15084] Fix wrong order of breadcrumbs in module management
* github.com:phpbb/phpbb:
[ticket/15084] fix wrong order of breadcrumbs on module management
-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)) |