From a6da16feb70233076649ed4b8a8b0d084e1f74ff Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Mon, 15 Aug 2016 08:01:32 +0200 Subject: [PATCH] [HTMLUtils] Remove getHelperButtonFormat --- lib/HTMLUtils.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/HTMLUtils.php b/lib/HTMLUtils.php index 8d39dc5..9da4ba7 100644 --- a/lib/HTMLUtils.php +++ b/lib/HTMLUtils.php @@ -1,16 +1,12 @@ ' . $name . ''; - } - public static function getHelperButtonsFormat($formats){ $buttons = ''; foreach( $formats as $name => $infos ){ if ( isset($infos['name']) ) - $buttons .= HTMLUtils::getHelperButtonFormat($name, $infos['name']) . PHP_EOL; + $buttons .= '' . PHP_EOL; } return $buttons;