Skip to content
Snippets Groups Projects
Commit 81d162b0 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

Merge branch 'hotline#35855_canconsult_error_500' into 'hotline-master'

Hotline#35855 canconsult error 500

See merge request !1384
parents 5fd66ddb 831ae213
Branches
Tags
7 merge requests!1553Master,!1502Master,!1501Stable,!1472Stable,!1397Master,!1396Hotline master,!1388Hotline master
- ticket #35855 : camelia55 - Le tableau des exemplaires ne s'affichent pas pour certaines notices
\ No newline at end of file
......@@ -204,7 +204,7 @@ class Class_CommSigb {
return false;
$sigb = $int_bib->getSIGBComm();
return (is_array($sigb)) ? false : $sigb->canConsult($field);
return ((is_array($sigb)) || (!$sigb)) ? false : $sigb->canConsult($field);
}
......
......@@ -715,4 +715,10 @@ class CommSigbItemAvailabilityWithoutSigbTest extends ModelTestCase {
$this->assertEquals('Never mind', $actual[0]->getDispo());
}
/** @test */
public function canConsultShouldReturnFalse() {
$this->assertFalse($this->comm_sigb->canConsult(Class_IntBib::find(5), ''));
}
}
\ No newline at end of file
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