From 09a7399838d77e359e42c0fb09c92f963f274cc1 Mon Sep 17 00:00:00 2001 From: Erik Amaru Ortiz Date: Fri, 17 Dec 2010 20:40:40 +0000 Subject: [PATCH] =?UTF-8?q?BUG=20"Al=20exportar=20el=20plugin=20se=20agreg?= =?UTF-8?q?a=20una=20nueva=20pesta=C3=B1a=20dentro=20del=20submenu=20llama?= =?UTF-8?q?da=20Relative"=20SOLVED?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulliver/system/class.menu.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gulliver/system/class.menu.php b/gulliver/system/class.menu.php index faf103028..bfd3b9cef 100644 --- a/gulliver/system/class.menu.php +++ b/gulliver/system/class.menu.php @@ -141,10 +141,10 @@ class Menu * @access public * @param string $strLabel label to show * @param string $strURL link - * @param string $strType type, defualt value ='relative' + * @param string $strType type, defualt value ='plugins' * @return void */ - function AddOption( $strLabel, $strURL, $strType = "relative" ) + function AddOption( $strLabel, $strURL, $strType = "plugins" ) { $pos = $this->OptionCount(); $this->Options[$pos] = $strURL; @@ -163,10 +163,10 @@ class Menu * @param string $strId menu id * @param string $strLabel label to show * @param string $strURL link - * @param string $strType type, defualt value ='relative' + * @param string $strType type, defualt value ='plugins' * @return void */ - function AddIdOption( $strId, $strLabel, $strURL, $strType = "relative" ) + function AddIdOption( $strId, $strLabel, $strURL, $strType = "plugins" ) { $pos = $this->OptionCount(); $this->Options[$pos] = $strURL; @@ -188,10 +188,10 @@ class Menu * @author Fernando Ontiveros Lira * @access public * @param string $strURL link - * @param string $strType type, defualt value ='relative' + * @param string $strType type, defualt value ='plugins' * @return void */ - function AddRawOption( $strURL = "", $strType = "relative" ) + function AddRawOption( $strURL = "", $strType = "plugins" ) { $pos = $this->OptionCount(); $this->Options[$pos] = $strURL; @@ -210,11 +210,11 @@ class Menu * @param string $strId menu id * @param string $strLabel label to show * @param string $strURL link - * @param string $strType type, defualt value ='relative' + * @param string $strType type, defualt value ='plugins' * @param string $elementClass default value ='' * @return void */ - function AddIdRawOption( $strId, $strURL = "", $label = "", $icon = "",$js = "", $strType = "relative",$elementClass = '' ) + function AddIdRawOption( $strId, $strURL = "", $label = "", $icon = "",$js = "", $strType = "plugins",$elementClass = '' ) { $pos = $this->OptionCount(); $this->Options[$pos] = $strURL;