Commit 291814ed0108266808698b69d99c0df5a6b9f2e7
1 parent
d4c64209
Fixed typo from last commit.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6332 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
plugins/ktstandard/PDFGeneratorAction.php
| ... | ... | @@ -50,9 +50,9 @@ class PDFGeneratorAction extends KTDocumentAction { |
| 50 | 50 | function getDisplayName() { |
| 51 | 51 | // We need to handle Windows differently - as usual ;) |
| 52 | 52 | if (substr( PHP_OS, 0, 3) == 'WIN') { |
| 53 | - $cmdpath = KT_DIR . "../openoffice/openoffice/program/python.bat" | |
| 53 | + $cmdpath = KT_DIR . "../openoffice/openoffice/program/python.bat"; | |
| 54 | 54 | } else { |
| 55 | - $cmdpath = "../openoffice/program/python" | |
| 55 | + $cmdpath = "../openoffice/program/python"; | |
| 56 | 56 | } |
| 57 | 57 | // Check if openoffice and python are available |
| 58 | 58 | if(file_exists($cmdpath)) { | ... | ... |