Revision f2b76d67
Von Thomas Heck vor etwa 12 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
301 | 301 |
my ($self, $name, $value, @slurp) = @_; |
302 | 302 |
my %attributes = _hashify(@slurp); |
303 | 303 |
|
304 |
$attributes{onclick} = "if (confirm('" . delete($attributes{confirm}) . "')) return true; else return false;" if $attributes{confirm}; |
|
304 |
if ( $attributes{confirm} ) { |
|
305 |
$attributes{onclick} = 'return confirm("'. _J(delete($attributes{confirm})) .'");'; |
|
306 |
} |
|
305 | 307 |
|
306 | 308 |
return $self->input_tag($name, $value, %attributes, type => 'submit', class => 'submit'); |
307 | 309 |
} |
Auch abrufbar als: Unified diff
Den Confirm-Text unter SL::Template::Plugin::L::submit_tag escapen