Skip to content
Snippets Groups Projects
Commit a84355c4 authored by Jean-Philippe Guérard's avatar Jean-Philippe Guérard
Browse files

Add some missing semicolon

parent bebfc4b4
No related branches found
No related tags found
No related merge requests found
...@@ -186,11 +186,11 @@ function sendEmail( $to, $subject, $body, $headers, $param) ...@@ -186,11 +186,11 @@ function sendEmail( $to, $subject, $body, $headers, $param)
$encoded_app = '=?UTF-8?B?' . base64_encode( NOMAPPLICATION ) . '?=' ; $encoded_app = '=?UTF-8?B?' . base64_encode( NOMAPPLICATION ) . '?=' ;
if ( $headers ) $headers .= "\r\n" if ( $headers ) $headers .= "\r\n" ;
$headers .= sprintf( "From: %s <%s>\r\n", $encoded_app, ADRESSEMAILADMIN ) $headers .= sprintf( "From: %s <%s>\r\n", $encoded_app, ADRESSEMAILADMIN ) ;
$headers .= "MIME-Version: 1.0\r\n" $headers .= "MIME-Version: 1.0\r\n" ;
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n" $headers .= "Content-Type: text/plain; charset=UTF-8\r\n" ;
$headers .= "Content-Transfer-Encoding: 8bit" $headers .= "Content-Transfer-Encoding: 8bit" ;
$body = html_entity_decode( $body, ENT_QUOTES, 'UTF-8' ) ; $body = html_entity_decode( $body, ENT_QUOTES, 'UTF-8' ) ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment