Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f2b76d67

Von Thomas Heck vor etwa 12 Jahren hinzugefügt

  • ID f2b76d67f773954dcfa59ff7c3ebb6f6607e2e43
  • Vorgänger 51d0274d
  • Nachfolger dc7791df

Den Confirm-Text unter SL::Template::Plugin::L::submit_tag escapen

Unterschiede anzeigen:

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