Language file updates
[koha.git] / admin / roadtype.pl
index 12d6e75..afd3636 100755 (executable)
@@ -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('road_type'),$input->param('roadtypeid'));
        
        }
        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<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=roadtype.pl\"></html>";
+    print $input->redirect("/cgi-bin/koha/admin/roadtype.pl");
        exit;
 
 # END $OP eq ADD_VALIDATE
@@ -141,23 +141,13 @@ if ($op eq 'add_form') {
        $template->param(else => 1);
        my @loop;
        my ($count,$results)=StringSearch($searchfield,'web');
-       my $toggle = 0;
        for (my $i=0; $i < $count; $i++){
                my %row = (roadtypeid => $results->[$i]{'roadtypeid'},
-                               road_type => $results->[$i]{'road_type'},
-                               toggle => $toggle );    
+                               road_type => $results->[$i]{'road_type'});
                push @loop, \%row;
-               if ( $toggle eq 0 )
-               {
-                       $toggle = 1;
-               }
-               else
-               {
-                       $toggle = 0;
-               }
        }
        $template->param(loop => \@loop);
 
 
 } #---- 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;