X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6ce40ffcc8bed8fe566e2be63298d289211175fc..47da14db:/SL/Layout/ActionBar/Separator.pm diff --git a/SL/Layout/ActionBar/Separator.pm b/SL/Layout/ActionBar/Separator.pm index b6b7b9443..afa202e8f 100644 --- a/SL/Layout/ActionBar/Separator.pm +++ b/SL/Layout/ActionBar/Separator.pm @@ -3,8 +3,12 @@ package SL::Layout::ActionBar::Separator; use strict; use parent qw(SL::Layout::ActionBar::Action); +use SL::Presenter::Tag qw(html_tag); + +sub from_params { $_[0]->new } + sub render { - $_[0]->p->html_tag('div', '', class => 'layout-actionbar-separator'); + html_tag('div', '', class => 'layout-actionbar-separator'); } sub script {