aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/nav.php5
-rw-r--r--version.inc2
2 files changed, 5 insertions, 2 deletions
diff --git a/include/nav.php b/include/nav.php
index c35466412..7c9abce49 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -185,7 +185,10 @@ EOT;
if(local_user()) {
- $nav['network'] = array('network', t('Matrix'), "", t('Your matrix'));
+ $network_options = get_pconfig(local_user(),'system','network_page_default');
+
+ $nav['network'] = array('network' . (($network_options) ? '?f=&' . $network_options : ''),
+ t('Matrix'), "", t('Your matrix'));
$nav['network']['mark'] = array('', t('Mark all matrix notifications seen'), '','');
$nav['home'] = array('channel/' . $channel['channel_address'], t('Channel Home'), "", t('Channel home'));
diff --git a/version.inc b/version.inc
index ff57af75f..712d00b5b 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-10-03.817
+2014-10-04.818