Skip to content
Snippets Groups Projects
Commit 54c2b77d authored by Leo Gordon's avatar Leo Gordon
Browse files

fixed a long-standing bug: input_id was supposed to be able to set things...

fixed a long-standing bug: input_id was supposed to be able to set things (according to compara code)
parent b46325e6
No related branches found
No related tags found
No related merge requests found
......@@ -301,9 +301,10 @@ sub input_job {
# ##################### subroutines that link through to Job's methods #########################
sub input_id {
my $self = shift;
return '' unless($self->input_job);
return $self->input_job->input_id;
my $self = shift;
return '' unless($self->input_job);
return $self->input_job->input_id(@_);
}
sub param {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment