Merge remote-tracking branch 'origin/pr-226'
Fix #225: call fetchAll on PDO statement #226
This commit is contained in:
commit
42441d29a2
|
@ -101,7 +101,7 @@ class m_roundcube {
|
|||
$req=$stmt->execute(array($fullmail));
|
||||
|
||||
if ($req) {
|
||||
foreach ( $req->fetchAll() as $t ) {
|
||||
foreach ( $stmt->fetchAll() as $t ) {
|
||||
if (empty($t['user_id'])) continue ;
|
||||
$rcuser_id=$t['user_id'];
|
||||
|
||||
|
|
Loading…
Reference in New Issue