commit | 8dc37cb1963450fa400fb339d44360ec2da17722 | [log] [tgz] |
---|---|---|
author | Gwenael Gallon <gwenael.gallon@mac.com> | Tue Feb 03 01:00:42 2015 +0100 |
committer | Gwenael Gallon <gwenael.gallon@mac.com> | Tue Feb 03 01:00:42 2015 +0100 |
tree | c6ba354e3d5bb94ea020e7362b65c8d9b18ba75f | |
parent | 43df7bda07b1d0949bd50fb21148668fa6c235f5 [diff] |
Fix a wrong var name in class CI_DB_pdo_4d_forge::_attr_type
diff --git a/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php b/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php index 9dc692c..6b42054 100644 --- a/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php +++ b/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php
@@ -164,7 +164,7 @@ $attributes['TYPE'] = 'INT'; return; case 'BIGINT': - $attribites['TYPE'] = 'INT64'; + $attributes['TYPE'] = 'INT64'; return; default: return; }