IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
2221 | 2221 | if (array_key_exists(strtolower($tablefield->Field), $cfields)) { |
2222 | 2222 | |
2223 | 2223 | // Get the field type from the query. |
2224 | | preg_match("|".$tablefield->Field." ([^ ]*( unsigned)?)|i", $cfields[strtolower($tablefield->Field)], $matches); |
2225 | | $fieldtype = $matches[1]; |
| 2224 | if ( preg_match("|".$tablefield->Field." ([^ ]*( unsigned)?)|i", $cfields[strtolower($tablefield->Field)], $matches) ) { |
| 2225 | $fieldtype = $matches[1]; |
| 2226 | } else { |
| 2227 | $fieldtype = null; |
| 2228 | } |
2226 | 2229 | |
2227 | 2230 | // Is actual field type different from the field type in query? |
2228 | 2231 | if ($tablefield->Type != $fieldtype) { |