Skip to content
Snippets Groups Projects
Commit 3f432464 authored by llaffont's avatar llaffont
Browse files

Correction plantage recherche sur des codes annexes faux à l'import

parent 149ff74b
Branches
Tags
No related merge requests found
......@@ -78,8 +78,8 @@ class Class_Codification
case "L": return fetchOne("select libelle from codif_langue where id_langue='$id'");
case "S": return fetchOne("select libelle from codif_section where id_section=$id");
case "E": return fetchOne("select libelle from codif_emplacement where id_emplacement=$id");
case "B": return fetchOne("select nom_court from int_bib where id_bib=$id");
case "Y": return fetchOne("select libelle from codif_annexe where code='$id'");
case "B": return fetchOne("select nom_court from int_bib where id_bib=".(int)$id);
case "Y": return fetchOne("select libelle from codif_annexe where code='".addslashes($id)."'");
case "Z": return fetchOne("select libelle from codif_tags where id_tag=$id");
case "T":
case "t": {
......
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