Skip to content

Commit

Permalink
Remove trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Jun 29, 2017
1 parent 1f6c876 commit 589b09f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/ssl_options.phps
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $mail->SMTPOptions = array (
'verify_depth' => 3,
'allow_self_signed' => true,
'peer_name' => 'smtp.example.com',
'cafile' => '/etc/ssl/ca_cert.pem',
'cafile' => '/etc/ssl/ca_cert.pem'
]
);

Expand Down
2 changes: 1 addition & 1 deletion src/PHPMailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ public function setLanguage($langcode = 'en', $lang_path = '')
'cz' => 'cs',
'dk' => 'da',
'no' => 'nb',
'se' => 'sv',
'se' => 'sv'
];

if (isset($renamed_langcodes[$langcode])) {
Expand Down

0 comments on commit 589b09f

Please sign in to comment.