From 499a01f179d511135828c10edf64348547d31794 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 17:41:33 +0200 Subject: [PATCH] use === --- lib/db/mdb2schemareader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index e9561a7ef1..ad4b2fe0e0 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -171,7 +171,7 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } - if ($type == 'boolean' && isset($options['default'])){ + if ($type === 'boolean' && isset($options['default'])){ $options['default'] = self::asBool($options['default']); } if (!empty($options['autoincrement'])