From 12024cc56b7ee669321edfb6ca32385bd232a312 Mon Sep 17 00:00:00 2001 From: ozh Date: Fri, 5 Jun 2015 16:04:07 +0200 Subject: [PATCH] Fix oops from previous fix. Fixes #1915. For real! --- includes/functions-formatting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions-formatting.php b/includes/functions-formatting.php index b288e8f..e2f36fa 100644 --- a/includes/functions-formatting.php +++ b/includes/functions-formatting.php @@ -297,7 +297,7 @@ function yourls_check_invalid_utf8( $string, $strip = false ) { } // We can't demand utf8 in the PCRE installation, so just return the string in those cases - if ( !$yourls_supports_pcre_u() ) { + if ( ! yourls_supports_pcre_u() ) { return $string; } -- 2.45.0