Skip to content

Commit

Permalink
Fixed encoding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev2-PracticeProvider committed Feb 4, 2016
1 parent 58d35d4 commit 0d82bf7
Show file tree
Hide file tree
Showing 5 changed files with 311 additions and 311 deletions.
8 changes: 4 additions & 4 deletions library/html2pdf/_mypdf/02_fpdf_formulaire.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Logiciel : HTML2PDF - classe FPDF_Formulaire
*
* permet la gestion de champs de formulaire dans un PDF
* Inspir� des sources de http:https://fpdf.org/fr/script/script36.php et http:https://fpdf.org/fr/script/script40.php
* Inspiré des sources de http:https://fpdf.org/fr/script/script36.php et http:https://fpdf.org/fr/script/script40.php
*
* @author Laurent MINGUET <[email protected]>
*/
Expand All @@ -17,8 +17,8 @@
class FPDF_Formulaire extends FPDF_BookMark
{
var $javascript = ''; //javascript code
var $n_js; //num�ro de l'objet javascript
var $n_cata; //num�ro de l'objet catalogue
var $n_js; //numéro de l'objet javascript
var $n_cata; //numéro de l'objet catalogue
var $ur; //

function __construct($orientation='P',$unit='mm',$format='A4')
Expand Down Expand Up @@ -71,7 +71,7 @@ function _putcatalog()
/*
* Create a javascript PDF string.
* @access protected
* @author Johannes G�ntert, Nicola Asuni
* @author Johannes Güntert, Nicola Asuni
*/
function _putjavascript()
{
Expand Down
4 changes: 2 additions & 2 deletions library/html2pdf/_mypdf/03_fpdf_alpha.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Image($file,$x,$y,$w=0,$h=0,$type='',$link='', $isMask=false, $maskImg=
//First use of image, get info
if($type=='')
{
/* MODIFICATION HTML2PDF pour le support des images g�n�r�es */
/* MODIFICATION HTML2PDF pour le support des images générées */
$type = explode('?', $file);
$type = pathinfo($type[0]);
if (!isset($type['extension']) || !$type['extension'])
Expand All @@ -53,7 +53,7 @@ function Image($file,$x,$y,$w=0,$h=0,$type='',$link='', $isMask=false, $maskImg=
}
$type=strtolower($type);

/* MODIFICATION HTML2PDF pour le support des images g�n�r�es */
/* MODIFICATION HTML2PDF pour le support des images générées */
if ($type=='php' || $type=='cgi')
{
// identification des infos
Expand Down
Loading

0 comments on commit 0d82bf7

Please sign in to comment.