diff --git a/include/class.pdf.php b/include/class.pdf.php
index 39f47a80b4281561882db3b69d6a9ec6dd482052..d5ba67f1d2cd7bfce5137f892ab8e743650fcf8e 100644
--- a/include/class.pdf.php
+++ b/include/class.pdf.php
@@ -86,7 +86,7 @@ class Ticket2PDF extends mPDFWithLocalImages
             return;
         $html = ob_get_clean();
 
-        $this->SetAutoFont();
+        $this->SetAutoFont(AUTOFONT_RTL);
         $this->WriteHtml($html, 0, true, true);
     }
 }
@@ -116,7 +116,7 @@ class Task2PDF extends mPDFWithLocalImages {
         ob_start();
         include STAFFINC_DIR.'templates/task-print.tmpl.php';
         $html = ob_get_clean();
-        $this->SetAutoFont();
+        $this->SetAutoFont(AUTOFONT_RTL);
         $this->WriteHtml($html, 0, true, true);
 
     }