Skip to content

Commit

Permalink
Fixed issue #11415: SQL error when filling token id in survey partici…
Browse files Browse the repository at this point in the history
…pant list
  • Loading branch information
olleharstedt committed Jul 22, 2016
1 parent e63ebb7 commit f2ba622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/TokenDynamic.php
Expand Up @@ -961,7 +961,7 @@ public function search()
}

$criteria = new CDbCriteria;
$criteria->compare('tid',$this->tid,true);
$criteria->compare('tid',$this->tid,false);
$criteria->compare('token',$this->token,true);
$criteria->compare('firstname',$this->firstname,true);
$criteria->compare('lastname',$this->lastname,true);
Expand Down

0 comments on commit f2ba622

Please sign in to comment.