From 291814ed0108266808698b69d99c0df5a6b9f2e7 Mon Sep 17 00:00:00 2001 From: Kevin Fourie Date: Mon, 26 Feb 2007 11:25:31 +0000 Subject: [PATCH] Fixed typo from last commit. --- plugins/ktstandard/PDFGeneratorAction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ktstandard/PDFGeneratorAction.php b/plugins/ktstandard/PDFGeneratorAction.php index 3c75532..596d9e2 100644 --- a/plugins/ktstandard/PDFGeneratorAction.php +++ b/plugins/ktstandard/PDFGeneratorAction.php @@ -50,9 +50,9 @@ class PDFGeneratorAction extends KTDocumentAction { function getDisplayName() { // We need to handle Windows differently - as usual ;) if (substr( PHP_OS, 0, 3) == 'WIN') { - $cmdpath = KT_DIR . "../openoffice/openoffice/program/python.bat" + $cmdpath = KT_DIR . "../openoffice/openoffice/program/python.bat"; } else { - $cmdpath = "../openoffice/program/python" + $cmdpath = "../openoffice/program/python"; } // Check if openoffice and python are available if(file_exists($cmdpath)) { -- libgit2 0.21.4