Skip to content

Commit

Permalink
Fixed issue #15773: Unable to check integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 14, 2020
1 parent d8c8146 commit 63c6584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/checkintegrity.php
Expand Up @@ -508,7 +508,7 @@ protected function _checkintegrity()
foreach ($aColumns as $oColumn) {

// Question columns start with the SID
if (strpos($oColumn->name, $oSurvey->sid) !== false) {
if (strpos($oColumn->name, (string)$oSurvey->sid) !== false) {

// Fileds are separated by X
$aFields = explode('X', $oColumn->name);
Expand Down

0 comments on commit 63c6584

Please sign in to comment.