X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/0e5e350124f7eec8f67109fe4777bc2dae6c0ea6..5a55ac869e35f61a8ae018d0e54b4fe6dc89c6a7:/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 {