Skip to content

Commit

Permalink
Fixing "Illegal string offset 'messageid'"
Browse files Browse the repository at this point in the history
  • Loading branch information
tswestendorp committed Jan 19, 2015
1 parent 8aad322 commit a696fd4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/dbeng/dbeng_abs.php
Expand Up @@ -119,6 +119,9 @@ function arrayValToIn($ar, $val, $forceType = null) {
$tmpList = '';

foreach($ar as $v) {
if (!isset($v[$val]) {
continue;
}
$tmpList .= $this->safe($v[$val], $forceType) . ",";
} # foreach
return substr($tmpList, 0, -1);
Expand Down

0 comments on commit a696fd4

Please sign in to comment.