PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 7.2.1
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v7.2.1
7.2.2 7.2.1 7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 All 37 releases
← All changes | includes/mlsimport-status-normalize.php +2 -0 6.3.77.2.1 View file →
@@ -21,10 +21,12 @@
21 21 * @param mixed $value Raw or PrettyEnums status value (anything non-string yields '').
22 22 * @return string Lowercased, space-free comparison key.
23 23 */
24 24 function mlsimport_normalize_status_enum( $value ) {
25 + // Non-string input has no comparable status; normalize to empty.
25 26 if ( ! is_string( $value ) ) {
26 27 return '';
27 28 }
28 29
30 + // Trim, lowercase, then drop spaces so "Active Under Contract" == "ActiveUnderContract".
29 31 return str_replace( ' ', '', strtolower( trim( $value ) ) );
30 32 }