diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-01-10 18:07:01 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-01-11 04:05:29 +0100 |
commit | 5500041ccab0fb7664a06ffa40fe3532d11bacb4 (patch) | |
tree | cc214a2e476014afa54835d65ee86be2f664ac5d /apps/contacts | |
parent | d92b083c1d50ac8fd763493add9bf947c1ca0267 (diff) | |
download | nextcloud-server-5500041ccab0fb7664a06ffa40fe3532d11bacb4.tar.gz nextcloud-server-5500041ccab0fb7664a06ffa40fe3532d11bacb4.zip |
Added missing }
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/ajax/addcard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/ajax/addcard.php b/apps/contacts/ajax/addcard.php index 54e4faa6ed9..9d9a99de33c 100644 --- a/apps/contacts/ajax/addcard.php +++ b/apps/contacts/ajax/addcard.php @@ -54,7 +54,7 @@ foreach( $add as $propname){ $value = $values[$propname]; if( isset( $parameters[$propname] ) && count( $parameters[$propname] )){ $prop_parameters = $parameters[$propname]; - else{ + } else { $prop_parameters = array(); } $vcard->addProperty($propname, $value); //, $prop_parameters); |