Skip to content
Snippets Groups Projects
Commit 605b6b57 authored by Alexander Purr's avatar Alexander Purr Committed by Robert Lange
Browse files

refs #20670 [finc] readd user status from vcard again

* added at ticket 19370
* was removed erroneously in ticket 19603
parent bb4cbf59
No related merge requests found
...@@ -632,6 +632,14 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -632,6 +632,14 @@ class FincILS extends PAIA implements LoggerAwareInterface
(string)$vcard->{'X-LIBRARY-ILS-PATRON-EDIT-ALLOW'} (string)$vcard->{'X-LIBRARY-ILS-PATRON-EDIT-ALLOW'}
); );
} }
if (isset($vcard->{'X-LIBRARY-BORROWER-BLACK-LIST-INDICATOR'})) {
$statuscodeInd
= (string)$vcard->{'X-LIBRARY-BORROWER-BLACK-LIST-INDICATOR'};
}
if (isset($vcard->{'X-LIBRARY-BORROWER-BLACK-LIST-DESCRIPTION'})) {
$statuscodeDesc
= (string)$vcard->{'X-LIBRARY-BORROWER-BLACK-LIST-DESCRIPTION'};
}
} catch (Exception $e) { } catch (Exception $e) {
throw $e; throw $e;
} }
......
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