Merge branch '2.0' of github.com:cakephp/cakephp into 2.0

This commit is contained in:
Mark Story 2011-06-22 10:56:18 -07:00
commit 3bc6195967

View file

@ -409,7 +409,7 @@ class Sqlserver extends DboSource {
if (strpos($col, 'int') !== false) {
return 'integer';
}
if (strpos($col, 'char') !== false && $limit === -1) {
if (strpos($col, 'char') !== false && $limit == -1) {
return 'text';
}
if (strpos($col, 'char') !== false) {