diff options
author | friendica <info@friendica.com> | 2012-07-19 03:59:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-19 03:59:32 -0700 |
commit | 6402fa11703b094426ed99f53f04ad8e9fbbbf90 (patch) | |
tree | caa21005805845e356d575b8fec026c1a7dfc513 /mod/network.php | |
parent | 3b1c2ce0012eab78482e9695bb7f1ca60feca050 (diff) | |
download | volse-hubzilla-6402fa11703b094426ed99f53f04ad8e9fbbbf90.tar.gz volse-hubzilla-6402fa11703b094426ed99f53f04ad8e9fbbbf90.tar.bz2 volse-hubzilla-6402fa11703b094426ed99f53f04ad8e9fbbbf90.zip |
dynamic load on slider change + delay to settle
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/mod/network.php b/mod/network.php index bb4c3e419..99c0f746f 100644 --- a/mod/network.php +++ b/mod/network.php @@ -338,12 +338,6 @@ function network_content(&$a, $update = 0) { set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) ); } - $arr = array('tabs' => $tabs); - call_hooks('network_tabs', $arr); - - $o .= replace_macros(get_markup_template('common_tabs.tpl'), array('$tabs'=> $arr['tabs'])); - - // --- end item filter tabs @@ -401,6 +395,14 @@ function network_content(&$a, $update = 0) { '$world' => t('Everybody') )); + $arr = array('tabs' => $tabs); + call_hooks('network_tabs', $arr); + + $o .= replace_macros(get_markup_template('common_tabs.tpl'), array('$tabs'=> $arr['tabs'])); + + // --- end item filter tabs + + // search terms header if($search) $o .= '<h2>' . t('Search Results For:') . ' ' . htmlspecialchars($search) . '</h2>'; |