diff options
author | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-03 01:00:42 +0100 |
---|---|---|
committer | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-03 01:00:42 +0100 |
commit | 8dc37cb1963450fa400fb339d44360ec2da17722 (patch) | |
tree | c6ba354e3d5bb94ea020e7362b65c8d9b18ba75f /system/database/drivers/pdo/subdrivers | |
parent | 43df7bda07b1d0949bd50fb21148668fa6c235f5 (diff) |
Fix a wrong var name in class CI_DB_pdo_4d_forge::_attr_type
Diffstat (limited to 'system/database/drivers/pdo/subdrivers')
-rw-r--r-- | system/database/drivers/pdo/subdrivers/pdo_4d_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php b/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php index 9dc692c1e..6b420540c 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 @@ class CI_DB_pdo_4d_forge extends CI_DB_pdo_forge { $attributes['TYPE'] = 'INT'; return; case 'BIGINT': - $attribites['TYPE'] = 'INT64'; + $attributes['TYPE'] = 'INT64'; return; default: return; } |