Skip to content
Snippets Groups Projects
Commit 9014240c authored by llaffont's avatar llaffont
Browse files

Fix test error in selection bib: $bib is an object, not int

parent bb35156d
Branches
Tags
2 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!12Fix Domain Browser Rendering
......@@ -141,7 +141,7 @@ class ZendAfi_Controller_Plugin_SelectionBib extends Zend_Controller_Plugin_Abst
return fetchOne('select count(*) from exemplaires where id_bib in (select ID_SITE from bib_c_site where ID_ZONE=\''. $zone . '\')');
};
} elseif ($bib) {
$clef = 'b' . $bib;
$clef = 'b' . $bib->getId();
$closure = function() use ($bib) { return $bib->numberOfExemplaires();};
} else {
$clef = 'all';
......
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