Skip to content
Snippets Groups Projects
Commit 2f8269c3 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Changed primary flag from int to bool

parent dd6c80b4
No related branches found
No related tags found
No related merge requests found
Pipeline #260 failed
......@@ -69,7 +69,7 @@ class MySQLUserDAO extends BaseMySQLDAO implements UserDAO {
$identity = new Identity($row['type']);
$identity->id = $row['id'];
$identity->primary = $row['primary'];
$identity->primary = boolval($row['primary']);
$identity->typedId = $row['typed_id'];
$identity->email = $row['email'];
$identity->name = $row['name'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment