|
From: Culprit <cul...@us...> - 2008-06-18 05:13:04
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb3/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3578/core/includes/shared/phpbb3/includes Modified Files: functions_hook.php Log Message: fixes Index: functions_hook.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions_hook.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** functions_hook.php 15 Jun 2008 21:01:41 -0000 1.13 --- functions_hook.php 18 Jun 2008 05:12:59 -0000 1.14 *************** *** 101,105 **** global $db, $phpbb_root_path, $phpEx; $sql = "SELECT m1.parent_id AS m1_parent, m1.module_langname AS m1_langname, m2.module_langname AS m2_langname, m2.module_basename AS m2_basename, m2.module_mode AS m2_mode ! FROM " . MODULES_TABLE . " AS m1 RIGHT OUTER JOIN phpbb3_modules AS m2 ON m1.module_id = m2.parent_id AND m2.module_enabled = 1 AND m2.module_display = 1 WHERE m1.parent_id IN (" . $this->id_tabs . ") AND m1.module_class = 'acp' ORDER BY m1.left_id"; --- 101,105 ---- global $db, $phpbb_root_path, $phpEx; $sql = "SELECT m1.parent_id AS m1_parent, m1.module_langname AS m1_langname, m2.module_langname AS m2_langname, m2.module_basename AS m2_basename, m2.module_mode AS m2_mode ! FROM " . MODULES_TABLE . " AS m1 RIGHT OUTER JOIN " . MODULES_TABLE . " AS m2 ON m1.module_id = m2.parent_id AND m2.module_enabled = 1 AND m2.module_display = 1 WHERE m1.parent_id IN (" . $this->id_tabs . ") AND m1.module_class = 'acp' ORDER BY m1.left_id"; |