Commit 02c37d40 authored by Jerome Chauveau's avatar Jerome Chauveau
Browse files

error function call fix

parent 7520ddeb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -165,7 +165,7 @@ function max.plugin.ead_search:runSearch($project as xs:string, $indexes as xs:s
           </section>
    }
    catch * {
        max:max-error("Erreur code " || $err:code, $err:description ||'('||$fullQuery||')',$err:module, $err:line-number)
        max:max-error("Erreur code " || $err:code, $err:description ||'('||$fullQuery||')',$err:module, $err:line-number,  $err:additional)
    }
};

@@ -195,7 +195,7 @@ function max.plugin.ead_search:runSearchSimple($project,$search){
                </section>
    }
    catch * {
        max:max-error("Erreur code " || $err:code, $err:description ||'('||$matches||')',$err:module, $err:line-number)
        max:max-error("Erreur code " || $err:code, $err:description ||'('||$matches||')',$err:module, $err:line-number, $err:additional)
    }
};