diff options
author | Kim Alvefur <zash@zash.se> | 2014-05-28 22:09:32 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-05-28 22:09:32 +0200 |
commit | f8321df6533ed9b1cc0e5945b3a3974df4963a4b (patch) | |
tree | 694225fe88815663e68508775dd0dd6a91a3bd67 /util/vcard.lua | |
parent | ed4cff4baa6a091923b8af119dc6dee47e404453 (diff) | |
download | prosody-f8321df6533ed9b1cc0e5945b3a3974df4963a4b.tar.gz prosody-f8321df6533ed9b1cc0e5945b3a3974df4963a4b.zip |
util.vcard: Add missing local declaration
Diffstat (limited to 'util/vcard.lua')
-rw-r--r-- | util/vcard.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/vcard.lua b/util/vcard.lua index 70c923b8..29a40844 100644 --- a/util/vcard.lua +++ b/util/vcard.lua @@ -17,6 +17,7 @@ local from_text, to_text, from_xep54, to_xep54; local line_sep = "\n"; local vCard_dtd; -- See end of file +local vCard4_dtd; local function fold_line() error "Not implemented" --TODO |