X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=admin%2Froadtype.pl;h=85148cc54fdee1d0de0eaabd1fd42cc76cd787be;hb=0f64d6ade7185677441bce627a25221fe293e9fd;hp=12d6e75c144ac820df64220980c5d3c9b117051c;hpb=a453c166320be75df13061c7eed9bb527b4732fc;p=koha_fer diff --git a/admin/roadtype.pl b/admin/roadtype.pl index 12d6e75c14..85148cc54f 100755 --- a/admin/roadtype.pl +++ b/admin/roadtype.pl @@ -89,16 +89,16 @@ if ($op eq 'add_form') { my $sth; if ($input->param('roadtypeid') ){ - $sth=$dbh->prepare("replace roadtype (roadtypeid,road_type) values (?,?) "); - $sth->execute(map { $input->param($_) } ('roadtypeid','road_type')); + $sth=$dbh->prepare("UPDATE roadtype SET road_type=? WHERE roadtypeid=?"); + $sth->execute($input->param('roadtypeid'),$input->param('road_type')); } else{ - $sth=$dbh->prepare("replace roadtype (road_type) values (?)"); - $sth->execute(map { $input->param($_) } ('road_type')); + $sth=$dbh->prepare("INSERT INTO roadtype (road_type) VALUES (?)"); + $sth->execute($input->param('road_type')); } $sth->finish; - print "Content-Type: text/html\n\n"; + print $input->redirect("/cgi-bin/koha/admin/roadtype.pl"); exit; # END $OP eq ADD_VALIDATE @@ -160,4 +160,4 @@ if ($op eq 'add_form') { } #---- END $OP eq DEFAULT -output_html_with_http_headers $input, $cookie, $template->output; \ No newline at end of file +output_html_with_http_headers $input, $cookie, $template->output;