Skip to content
Snippets Groups Projects
Commit 74a15892 authored by efalcy's avatar efalcy
Browse files

SIGB Koha : correctif sur l'option d'interdiction de reservation lors d'exemplaire disponible

parent fe44413f
No related merge requests found
......@@ -25,7 +25,7 @@ class Class_WebService_SIGB_Koha {
public static function getService($params){
if (!isset(self::$service)) {
$instance = new self();
array_merge([$params['Interdire_reservation_doc_dispo']=0],$params);
$params = array_merge(['Interdire_reservation_doc_dispo' => 0],$params);
self::$service = Class_WebService_SIGB_Koha_Service::getService($params['url_serveur'],$params['Interdire_reservation_doc_dispo']==='1');
}
......
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