Merge pull request #318 from djfm/release

// fixed Bulgarian PDF generation
This commit is contained in:
Rémi Gaillard
2013-03-12 02:34:28 -07:00
+1 -1
View File
@@ -39,7 +39,7 @@ class PDFGeneratorCore extends TCPDF
public $content;
public $font;
public $font_by_lang = array('ja' => 'cid0jp', 'ru' => 'freeserif', 'el' => 'freeserif', 'vn' => 'dejavusans', 'pl' => 'dejavusans');
public $font_by_lang = array('ja' => 'cid0jp', 'bg' => 'freeserif', 'ru' => 'freeserif', 'el' => 'freeserif', 'vn' => 'dejavusans', 'pl' => 'dejavusans');
public function __construct($use_cache = false)