diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-02-10 07:21:56 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-02-10 16:43:40 +0100 |
commit | b4924ed1e59d587daf94fddd0dc739c662539779 (patch) | |
tree | 9f5fa77d8dd1aa572773dc9d96ee5e2dcb1b7b74 | |
parent | 85853f9ec29be9a2ba92737de204da1469f72dd8 (diff) | |
download | nextcloud-server-b4924ed1e59d587daf94fddd0dc739c662539779.tar.gz nextcloud-server-b4924ed1e59d587daf94fddd0dc739c662539779.zip |
Variable wasn't reset.
-rw-r--r-- | apps/contacts/js/contacts.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 7f4e938c48a..14503ad4426 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -619,6 +619,7 @@ Contacts={ this.addname = n[2]; this.honpre = n[3]; this.honsuf = n[4]; + this.fullname = ''; $('#n').val(n.join(';')); if(n[3].length > 0) { |