diff options
| author | Mickael Remond <mremond@process-one.net> | 2016-02-03 19:03:17 +0100 |
|---|---|---|
| committer | Mickael Remond <mremond@process-one.net> | 2016-02-03 19:03:17 +0100 |
| commit | dfc29ea03ca91e1eb5387d93612e2ac4b4b496da (patch) | |
| tree | 8a3ab89a7307fb5f4daf9f66b00fe9f16fa36b69 /src/mod_vcard_ldap.erl | |
| parent | Remove reference to p1_logger (diff) | |
Switch to Fast XML module
Diffstat (limited to '')
| -rw-r--r-- | src/mod_vcard_ldap.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_vcard_ldap.erl b/src/mod_vcard_ldap.erl index b24356d8e..25239133c 100644 --- a/src/mod_vcard_ldap.erl +++ b/src/mod_vcard_ldap.erl @@ -21,7 +21,7 @@ %%% with this program; if not, write to the Free Software Foundation, Inc., %%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. %%% -%%%---------------------------------------------------------------------- +%%%---------------------u------------------------------------------------- -module(mod_vcard_ldap). @@ -723,7 +723,7 @@ find_xdata_el1([]) -> false; find_xdata_el1([#xmlel{name = Name, attrs = Attrs, children = SubEls} | Els]) -> - case xml:get_attr_s(<<"xmlns">>, Attrs) of + case fxml:get_attr_s(<<"xmlns">>, Attrs) of ?NS_XDATA -> #xmlel{name = Name, attrs = Attrs, children = SubEls}; _ -> find_xdata_el1(Els) |
