Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 9aaca433

Von Moritz Bunkus vor etwa 17 Jahren hinzugefügt

  • ID 9aaca43317d3ea33d80a308cab7ce4c20d732a16
  • Vorgänger 1ced937c
  • Nachfolger 0451bb96

Die Funktion Form::parse_html_template2() in Form::parse_html_template() umbenannt (letztere wurde in Revision 2923 entfernt).

Unterschiede anzeigen:

bin/mozilla/io.pl
354 354
  push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
355 355

  
356 356
  $form->header();
357
  print $form->parse_html_template2("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
357
  print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
358 358

  
359 359
  $lxdebug->leave_sub();
360 360
}
......
701 701
  @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
702 702
  @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
703 703

  
704
  print $form->parse_html_template2('generic/edit_email',
705
                                    { title           => $title,
706
                                      a_filename      => $attachment_filename,
707
                                      _print_options_ => print_options('inline' => 1),
708
                                      HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
709
                                      SHOW_BCC        => $myconfig{role} eq 'admin' });
704
  print $form->parse_html_template('generic/edit_email',
705
                                   { title           => $title,
706
                                     a_filename      => $attachment_filename,
707
                                     _print_options_ => print_options('inline' => 1),
708
                                     HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
709
                                     SHOW_BCC        => $myconfig{role} eq 'admin' });
710 710

  
711 711
  $lxdebug->leave_sub();
712 712
}
......
834 834
    remove_draft_checked => $form->{remove_draft} ? "checked" : ''
835 835
  );
836 836

  
837
  my $print_options = $form->parse_html_template2("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
837
  my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
838 838

  
839 839
  if ($options{inline}) {
840 840
    $lxdebug->leave_sub();

Auch abrufbar als: Unified diff