X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/34dc226c4ddd6aa05c602b5082fb06bc70719abd..a0f6a00c1db8152633841777a95f5420b56b42ee:/bin/mozilla/ic.pl diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index 61a820b39..ada06eeb9 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -37,6 +37,7 @@ use SL::IC; #use SL::PE; require "$form->{path}/io.pl"; +require "bin/mozilla/common.pl"; 1; @@ -3041,6 +3042,7 @@ sub save { } # saving the history if(!exists $form->{addition}) { + $form->{snumber} = qq|partnumber_| . $form->{partnumber}; $form->{addition} = "SAVED"; $form->save_history($form->dbconnect(\%myconfig)); } @@ -3163,6 +3165,7 @@ sub save_as_new { # saving the history if(!exists $form->{addition}) { + $form->{snumber} = qq|partnumber_| . $form->{partnumber}; $form->{addition} = "SAVED AS NEW"; $form->save_history($form->dbconnect(\%myconfig)); } @@ -3180,6 +3183,7 @@ sub delete { $lxdebug->enter_sub(); # saving the history if(!exists $form->{addition}) { + $form->{snumber} = qq|partnumber_| . $form->{partnumber}; $form->{addition} = "DELETED"; $form->save_history($form->dbconnect(\%myconfig)); } @@ -3258,4 +3262,4 @@ sub parts_language_selection { $lxdebug->leave_sub(); } -sub continue { &{ $form->{nextsub} } } +sub continue { call_sub($form->{"nextsub"}); }