Summary: | Remove 'single' method from Koha::Objects | ||
---|---|---|---|
Product: | Koha | Reporter: | Martin Renvoize (ashimema) <martin.renvoize> |
Component: | Database | Assignee: | Bugs List <koha-bugs> |
Status: | CLOSED INVALID | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | jonathan.druart |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
GIT URL: | Change sponsored?: | --- | |
Patch complexity: | --- | Documentation contact: | |
Documentation submission: | Text to go in the release notes: | ||
Version(s) released in: | Circulation function: |
Description
Martin Renvoize (ashimema)
2018-04-11 15:38:32 UTC
Hum? 188 sub single { 189 my ($self) = @_; 190 191 my $single = $self->_resultset()->single; 192 return unless $single; 193 194 return $self->object_class()->_new_from_dbic($single); 195 } |