From d83bc0a97bf7231573ee5e543cefc97ad5d661ed Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 3 Mar 2010 11:08:29 +0000 Subject: [PATCH] Updated smarty image method git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15908 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/smarty/plugins/function.image.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gosa-core/include/smarty/plugins/function.image.php b/gosa-core/include/smarty/plugins/function.image.php index c74753d48..b20be0cfe 100644 --- a/gosa-core/include/smarty/plugins/function.image.php +++ b/gosa-core/include/smarty/plugins/function.image.php @@ -3,12 +3,11 @@ function smarty_function_image($params, &$smarty) { $path = (isset($params['path']))? $params['path'] :""; - $label = (isset($params['label']))? $params['label'] :""; $action = (isset($params['action']))? $params['action'] :""; $title = (isset($params['title']))? $params['title'] :""; $align = (isset($params['align']))? $params['align'] :""; //print_a(array($path,$label,$action,$title,$align)); - echo image($path,$label,$action,$title,$align); + echo image($path,$action,$title,$align); } ?> -- 2.39.5