Commit ba3ea1aff0bfc971355db43f21b6d278fb6c4e58

Authored by Conrad Vermeulen
1 parent 9c17f090

KTS-1687

"Double quote to single quote conversion"
Fixed.
Reviewed by: Kevin Fourie

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6235 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 1 additions and 1 deletions
bin/cleanup.php
... ... @@ -131,7 +131,7 @@ function checkRepoDocument($oDocument) {
131 131 function checkRepoVersions($oDocument) {
132 132 global $fsPath, $aRepoVersionProblems;
133 133 $table = 'document_transactions';
134   - $aVersions = DBUtil::getResultArrayKey(array("SELECT DISTINCT version FROM $table WHERE document_id = ?", array($oDocument->getID())), "version");
  134 + $aVersions = DBUtil::getResultArrayKey(array("SELECT DISTINCT version FROM $table WHERE document_id = ?", array($oDocument->getID())), 'version');
135 135 foreach($aVersions as $sVersion) {
136 136 if ($sVersion == $oDocument->getVersion()) {
137 137 continue;
... ...