diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-12 11:57:36 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-12 11:57:36 +0200 |
commit | b70226b49370aaeed1e3551b0f0ffd0d100be907 (patch) | |
tree | 68e89514bae728aaec85e1f8de2ff9f06f08a402 /apps | |
parent | 266c5238c9f1cec067d23ee1433e282829594f23 (diff) | |
parent | 4501407283034c094c287ca84aba0bedcd939124 (diff) | |
download | nextcloud-server-b70226b49370aaeed1e3551b0f0ffd0d100be907.tar.gz nextcloud-server-b70226b49370aaeed1e3551b0f0ffd0d100be907.zip |
Merge branch 'stable4' of git://gitorious.org/owncloud/owncloud into stable4
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/js/contacts.js | 16 | ||||
-rw-r--r-- | apps/contacts/lib/vcard.php | 2 | ||||
-rw-r--r-- | apps/files/js/fileactions.js | 4 |
3 files changed, 11 insertions, 11 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 9308e0227ed..4f8f3743dc4 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -842,22 +842,22 @@ Contacts={ $('#addressdisplay dl').last().data('checksum', this.data.ADR[adr]['checksum']); var adrarray = this.data.ADR[adr]['value']; var adrtxt = ''; - if(adrarray[0].length > 0) { + if(adrarray[0] && adrarray[0].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[0].strip_tags() + '</li>'; } - if(adrarray[1].length > 0) { + if(adrarray[1] && adrarray[1].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[1].strip_tags() + '</li>'; } - if(adrarray[2].length > 0) { + if(adrarray[2] && adrarray[2].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[2].strip_tags() + '</li>'; } - if(adrarray[3].length > 0 || adrarray[5].length > 0) { + if((adrarray[3] && adrarray[5]) && adrarray[3].length > 0 || adrarray[5].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[5].strip_tags() + ' ' + adrarray[3].strip_tags() + '</li>'; } - if(adrarray[4].length > 0) { + if(adrarray[4] && adrarray[4].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[4].strip_tags() + '</li>'; } - if(adrarray[6].length > 0) { + if(adrarray[6] && adrarray[6].length > 0) { adrtxt = adrtxt + '<li>' + adrarray[6].strip_tags() + '</li>'; } $('#addressdisplay dl').last().find('.addresslist').html(adrtxt); @@ -1284,8 +1284,8 @@ Contacts={ $('#dialog_holder').load(OC.filePath('contacts', 'ajax', 'chooseaddressbook.php'), function(jsondata){ if(jsondata.status != 'error'){ $('#chooseaddressbook_dialog').dialog({ - minWidthwidth : 600, - close : function(event, ui) { + minWidth: 600, + close: function(event, ui) { $(this).dialog('destroy').remove(); } }).css('overflow','visible'); diff --git a/apps/contacts/lib/vcard.php b/apps/contacts/lib/vcard.php index 20a9e4afc9c..168e8af3e55 100644 --- a/apps/contacts/lib/vcard.php +++ b/apps/contacts/lib/vcard.php @@ -131,7 +131,7 @@ class OC_Contacts_VCard{ foreach($property->parameters as $key=>&$parameter){ if(strtoupper($parameter->name) == 'ENCODING') { if(strtoupper($parameter->value) == 'QUOTED-PRINTABLE') { // what kind of other encodings could be used? - $property->value = quoted_printable_decode($property->value); + $property->value = str_replace("\r\n", "\n", mb_convert_encoding(quoted_printable_decode($property->value), 'utf-8', 'auto')); unset($property->parameters[$key]); } } elseif(strtoupper($parameter->name) == 'CHARSET') { diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 0c672cd6708..7414c1f3395 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -71,7 +71,7 @@ FileActions={ } var html='<a href="#" class="action" style="display:none">'; if(img) { html+='<img src="'+img+'"/> '; } - html += name+'</a>'; + html += t('files', name) +'</a>'; var element=$(html); element.data('action',name); element.click(function(event){ @@ -91,7 +91,7 @@ FileActions={ if(img.call){ img=img(file); } - var html='<a href="#" original-title="Delete" class="action delete" style="display:none" />'; + var html='<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete" style="display:none" />'; var element=$(html); if(img){ element.append($('<img src="'+img+'"/>')); |