View | Details | Raw Unified | Return to bug 7957
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_7957.perl (-2 / +1 lines)
Lines 54-60 $query = qq{ Link Here
54
};
54
};
55
my $insert_sth = $dbh->prepare($query);
55
my $insert_sth = $dbh->prepare($query);
56
foreach ( @$results ) {
56
foreach ( @$results ) {
57
    $sth->execute($_->{subscriptionid}, 'import', $_->{routingnotes});
57
    $sth->execute($_->{subscriptionid}, '1', $_->{routingnotes});
58
    my $routinglistid = $dbh->last_insert_id(undef, undef, 'subscriptionroutinglist', undef);
58
    my $routinglistid = $dbh->last_insert_id(undef, undef, 'subscriptionroutinglist', undef);
59
    $select_sth->execute($_->{subscriptionid});
59
    $select_sth->execute($_->{subscriptionid});
60
    my $routings = $select_sth->fetchall_arrayref( {} );
60
    my $routings = $select_sth->fetchall_arrayref( {} );
61
- 

Return to bug 7957