Commit 9d22b661312afeee38647fab42137b9f83416b1b
1 parent
bc90ced4
Merged in from DEV trunk...
KTS-3206 "Upgrading from OSS 3.4.6 to 3.5.2a shows the error 'Could not locate the df library'" Fixed. Commented out config item as on Linux it is a system command. Committed By: Kevin Fourie Reviewed By: Jonathan Byrne git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@8320 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/upgrades/UpgradeFunctions.inc.php
| ... | ... | @@ -1064,7 +1064,7 @@ class UpgradeFunctions { |
| 1064 | 1064 | $ini->addItem('externalBinary', 'python', KT_STACK_DIR . '/openoffice/program/python'); |
| 1065 | 1065 | $ini->addItem('externalBinary', 'java', KT_STACK_DIR . '/java/jre/bin/java'); |
| 1066 | 1066 | $ini->addItem('externalBinary', 'php', KT_STACK_DIR . '/php/bin/php'); |
| 1067 | - $ini->addItem('externalBinary', 'df', KT_STACK_DIR . '/common/bin/df'); | |
| 1067 | + $ini->addItem('externalBinary', 'df', ';'. KT_STACK_DIR . '/common/bin/df'); | |
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | 1070 | // search Section | ... | ... |