X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ff424b75f8f66c796eae294d0239f0440741e578..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Layout/ActionBar/Separator.pm diff --git a/SL/Layout/ActionBar/Separator.pm b/SL/Layout/ActionBar/Separator.pm index cbcdf5119..afa202e8f 100644 --- a/SL/Layout/ActionBar/Separator.pm +++ b/SL/Layout/ActionBar/Separator.pm @@ -3,10 +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 {