diff options
| author | Christian Fowler <spider@viovio.com> | 2008-06-25 22:21:14 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2008-06-25 22:21:14 +0000 |
| commit | 3349a7ff28bdbe6b31f8941e63148fe408a69d43 (patch) | |
| tree | c03cbb3a3063b692d0690d3c2843845639a5c7f4 | |
| parent | ea93f6ef9296c993952c17325010c2a83acafe40 (diff) | |
| download | nexus-3349a7ff28bdbe6b31f8941e63148fe408a69d43.tar.gz nexus-3349a7ff28bdbe6b31f8941e63148fe408a69d43.tar.bz2 nexus-3349a7ff28bdbe6b31f8941e63148fe408a69d43.zip | |
change display call to use a hash for display options, add display_mode to options hash
| -rw-r--r-- | menu_items.php | 4 | ||||
| -rw-r--r-- | menu_sort.php | 4 | ||||
| -rw-r--r-- | menus.php | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/menu_items.php b/menu_items.php index c186c4b..f2b477a 100644 --- a/menu_items.php +++ b/menu_items.php @@ -1,7 +1,7 @@ <?php /** * @author xing <xing@synapse.plus.com> - * @version $Revision: 1.7 $ + * @version $Revision: 1.8 $ * @package nexus * @subpackage functions */ @@ -107,5 +107,5 @@ if( count( $menuList ) > 1 ) { } $gBitSystem->setBrowserTitle( 'Nexus Menus' ); -$gBitSystem->display( 'bitpackage:nexus/menu_items.tpl' ); +$gBitSystem->display( 'bitpackage:nexus/menu_items.tpl' , NULL, array( 'display_mode' => 'display' )); ?> diff --git a/menu_sort.php b/menu_sort.php index ab8a0c7..12717ff 100644 --- a/menu_sort.php +++ b/menu_sort.php @@ -1,7 +1,7 @@ <?php /** * @author xing <xing@synapse.plus.com> - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ * @package nexus * @subpackage functions */ @@ -43,5 +43,5 @@ if( isset( $_REQUEST['tab'] ) ) { $gBitSmarty->assign( 'nexus_file', strtolower( 'mod_'.preg_replace( "/ /", "_", $gNexus->mInfo['title'] ).'_'.$gNexus->mInfo['menu_id'].'.tpl' ) ); $gBitSystem->setBrowserTitle( 'Nexus Menus' ); -$gBitSystem->display( 'bitpackage:nexus/menu_sort.tpl' ); +$gBitSystem->display( 'bitpackage:nexus/menu_sort.tpl' , NULL, array( 'display_mode' => 'display' )); ?> @@ -1,7 +1,7 @@ <?php /** * @author xing <xing@synapse.plus.com> - * @version $Revision: 1.15 $ + * @version $Revision: 1.16 $ * @package nexus * @subpackage functions */ @@ -94,5 +94,5 @@ if( is_file( TEMP_PKG_PATH.'nexus/modules/top_bar_inc.tpl' ) ) { } $gBitSystem->setBrowserTitle( 'Nexus Menus' ); -$gBitSystem->display( 'bitpackage:nexus/menus.tpl' ); +$gBitSystem->display( 'bitpackage:nexus/menus.tpl' , NULL, array( 'display_mode' => 'display' )); ?> |
