From f742b875a97ccbedd9500551e0bef8fe8f5ecaf0 Mon Sep 17 00:00:00 2001 From: jepso Date: Sat, 1 Sep 2007 00:28:28 +0000 Subject: [PATCH] updated method that checks for pdflatex --- vendor/Sensei/Sensei/Doc/Renderer/Pdf.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php b/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php index f2787f51c..35f789e35 100644 --- a/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php +++ b/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php @@ -50,8 +50,9 @@ class Sensei_Doc_Renderer_Pdf extends Sensei_Doc_Renderer public function testRequirements() { - exec($this->_options['pdflatex_path'] . ' --version', $output); - if ( ! isset($output[0]) || substr($output[0], 0, 6) !== 'pdfTeX') { + exec($this->_options['pdflatex_path'], $output); + + if ( ! isset($output[0]) || ! preg_match('/^This is pdfTeXk/', $output[0])) { $message = 'pdfLaTeX does not seem to be installed, or pdflatex_path' . ' option does not point to pdfLaTeX executable.'; throw new Sensei_Doc_Renderer_Exception($message);