Bugzilla – Attachment #114491: Bug 27127: Make Koha::BackgroundJob->messages return a scalar for
bug #27127
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 27127
Collapse All
|
Expand All
(-)
a/Koha/BackgroundJob.pm (-2 / +1 lines)
Lines 167-173 sub messages {
Link Here
167
@messages = @{ $data_dump->{messages} };
167
@messages = @{ $data_dump->{messages} };
168
}
168
}
169
169
170
return @messages;
170
return \@messages;
171
}
171
}
172
172
173
=head3 report
173
=head3 report
174
-
Return to
bug 27127