aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Ais <brunoaiss@gmail.com>2012-02-04 17:29:10 +0000
committerBruno Ais <brunoaiss@gmail.com>2012-11-26 17:44:41 +0000
commit24939c822529f179a436abfa4e4e2f1b5bcb53ec (patch)
tree6809eeeee7ed2946baf9b7937651cdb40f5d8ac3
parentb453f359ff6dab58b0eaf94548c4e58110fb02ec (diff)
downloadforums-24939c822529f179a436abfa4e4e2f1b5bcb53ec.tar
forums-24939c822529f179a436abfa4e4e2f1b5bcb53ec.tar.gz
forums-24939c822529f179a436abfa4e4e2f1b5bcb53ec.tar.bz2
forums-24939c822529f179a436abfa4e4e2f1b5bcb53ec.tar.xz
forums-24939c822529f179a436abfa4e4e2f1b5bcb53ec.zip
[ticket/10601]Move Inbox the default in private messages module
Did exactly as the answer here asked: http://area51.phpbb.com/phpBB/viewtopic.php?p=234111 PHPBB3-10601
-rw-r--r--phpBB/includes/functions_module.php20
-rw-r--r--phpBB/install/install_install.php17
2 files changed, 34 insertions, 3 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php
index ad76be9f2f..6f38dc60ce 100644
--- a/phpBB/includes/functions_module.php
+++ b/phpBB/includes/functions_module.php
@@ -759,7 +759,25 @@ class p_master
}
}
- $u_title = $module_url . $delim . 'i=' . (($item_ary['cat']) ? $item_ary['id'] : $item_ary['name'] . (($item_ary['is_duplicate']) ? '&amp;icat=' . $current_id : '') . '&amp;mode=' . $item_ary['mode']);
+ $u_title = $module_url . $delim . 'i=';
+ // if the item has a name use it, else use its id
+ if (empty($item_ary['name']))
+ {
+ $u_title .= $item_ary['id'];
+ }
+ else
+ {
+ $u_title .= $item_ary['name'];
+ }
+ // If the item is not a category append the mode
+ if (!$item_ary['cat'])
+ {
+ if ($item_ary['is_duplicate'])
+ {
+ $u_title .= '&amp;icat=' . $current_id;
+ }
+ $u_title .= '&amp;mode=' . $item_ary['mode'];
+ }
// Was not allowed in categories before - /*!$item_ary['cat'] && */
$u_title .= (isset($item_ary['url_extra'])) ? $item_ary['url_extra'] : '';
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index f80b8b5661..d4eba6eefd 100644
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1478,8 +1478,13 @@ class install_install extends module
foreach ($this->module_categories[$module_class] as $cat_name => $subs)
{
+ $basename = '';
+ if (isset($module_categories_basenames[$cat_name]))
+ {
+ $basename = $module_categories_basenames[$cat_name];
+ }
$module_data = array(
- 'module_basename' => '',
+ 'module_basename' => $basename,
'module_enabled' => 1,
'module_display' => 1,
'parent_id' => 0,
@@ -1507,8 +1512,13 @@ class install_install extends module
{
foreach ($subs as $level2_name)
{
+ $basename = '';
+ if (isset($module_categories_basenames[$level2_name]))
+ {
+ $basename = $module_categories_basenames[$level2_name];
+ }
$module_data = array(
- 'module_basename' => '',
+ 'module_basename' => $basename,
'module_enabled' => 1,
'module_display' => 1,
'parent_id' => (int) $categories[$cat_name]['id'],
@@ -2115,6 +2125,9 @@ class install_install extends module
'UCP_ZEBRA' => null,
),
);
+ var $module_categories_basenames = array(
+ 'UCP_PM' => 'ucp_pm',
+ );
var $module_extras = array(
'acp' => array(