From e9e57ab5c886e5dcb9e7872bfb13da4c38b34249 Mon Sep 17 00:00:00 2001 From: grum Date: Sun, 26 Oct 2008 19:10:18 +0000 Subject: [PATCH] menu item "quicksearch" will be displayed only if a $block->data is set (like other menu items) git-svn-id: http://piwigo.org/svn/trunk@2810 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/menubar.inc.php | 4 ++++ template/yoga/menubar_menu.tpl | 14 ++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/include/menubar.inc.php b/include/menubar.inc.php index 6e9f73a86..3e088ea24 100644 --- a/include/menubar.inc.php +++ b/include/menubar.inc.php @@ -215,6 +215,10 @@ function initialize_menu() //---------------------------------------------------------------------- summary if ( ($block=$menu->get_block('mbMenu')) != null ) { + // quick search block will be displayed only if data['qsearch'] is set + // to "yes" + $block->data['qsearch']='yes'; + // tags link $block->data['tags'] = array( diff --git a/template/yoga/menubar_menu.tpl b/template/yoga/menubar_menu.tpl index c16fae690..16c02f618 100644 --- a/template/yoga/menubar_menu.tpl +++ b/template/yoga/menubar_menu.tpl @@ -1,11 +1,13 @@
{'title_menu'|@translate}
-
-

is for html validation only - does not affect positioning*}> - -

-
- + {if isset($block->data.qsearch) and $block->data.qsearch=="yes"} +
+

is for html validation only - does not affect positioning*}> + +

+
+ + {/if}