mod_vcard_legacy: Fix uppercase tag name (thanks pep.)
authorKim Alvefur <zash@zash.se>
Sun, 09 Sep 2018 02:14:44 +0200
changeset 9287 161f604e14fa
parent 9286 e977b64ebd81
child 9288 78673e81243f
mod_vcard_legacy: Fix uppercase tag name (thanks pep.) Must have slipped on my shift key
plugins/mod_vcard_legacy.lua
--- a/plugins/mod_vcard_legacy.lua	Sat Sep 08 16:49:29 2018 +0200
+++ b/plugins/mod_vcard_legacy.lua	Sun Sep 09 02:14:44 2018 +0200
@@ -158,7 +158,7 @@
 	vcard4:tag("n")
 		:text_tag("surname", N and N:get_child_text("FAMILY"))
 		:text_tag("given", N and N:get_child_text("GIVEN"))
-		:text_tag("additional", N and N:get_child_text("MIDDLe"))
+		:text_tag("additional", N and N:get_child_text("MIDDLE"))
 		:text_tag("prefix", N and N:get_child_text("PREFIX"))
 		:text_tag("suffix", N and N:get_child_text("SUFFIX"))
 	:up();