Changeset 635 for trunk/Modules
- Timestamp:
- Jan 19, 2014, 9:36:28 PM (11 years ago)
- Location:
- trunk/Modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Bill.php
r627 r635 20 20 function HtmlToPdf($HtmlCode) 21 21 { 22 $Output = shell_exec('echo "'.addslashes(FromUTF8($HtmlCode)). 22 $Encoding = new Encoding(); 23 $Output = shell_exec('echo "'.addslashes($Encoding->FromUTF8($HtmlCode)). 23 24 '"|htmldoc --no-numbered --webpage --no-embedfonts --charset 8859-2 -t pdf -'); 24 25 return($Output); -
trunk/Modules/News/ImportObecHovezi.php
r622 r635 41 41 42 42 /* 43 //$Content = addslashes(ToUTF8(file_get_contents($SourceURL), 'win1250')); 43 //$Encoding = new Encoding(); 44 //$Content = addslashes($Encoding->ToUTF8(file_get_contents($SourceURL), 'win1250')); 44 45 $Content = file_get_contents($SourceURL); 45 46 while(strpos($Content, $StartText) !== false) -
trunk/Modules/News/ImportTvBeskyd.php
r622 r635 14 14 $Author = 'Automat'; 15 15 16 //$Content = addslashes(ToUTF8(file_get_contents($SourceURL), 'win1250')); 16 //$Encoding = new Encoding(); 17 //$Content = addslashes($Encoding->ToUTF8(file_get_contents($SourceURL), 'win1250')); 17 18 $Content = file_get_contents($SourceURL); 18 19 while(strpos($Content, $StartText) !== false)
Note:
See TracChangeset
for help on using the changeset viewer.