diff --git a/src/Search_Replace_Command.php b/src/Search_Replace_Command.php index 689d5522..75397d50 100644 --- a/src/Search_Replace_Command.php +++ b/src/Search_Replace_Command.php @@ -712,7 +712,7 @@ private static function get_columns( $table ) { private static function is_text_col( $type ) { foreach ( array( 'text', 'varchar' ) as $token ) { - if ( false !== strpos( $type, $token ) ) { + if ( false !== stripos( $type, $token ) ) { return true; } }