From: Brion Vibber Date: Thu, 7 Oct 2010 19:32:10 +0000 (-0700) Subject: Workaround for regression in input validation due to more PCRE oddities. Recommend... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5e0f3e7bd4e7035efdb8bc62cd61d4613e1ad6b1;p=quix0rs-gnu-social.git Workaround for regression in input validation due to more PCRE oddities. Recommend redoing common_validate_utf8() using something more reliable, perhaps. :P --- diff --git a/lib/util.php b/lib/util.php index 35fcfdb090..c05fcf15a2 100644 --- a/lib/util.php +++ b/lib/util.php @@ -919,7 +919,12 @@ function common_shorten_links($text, $always = false) function common_validate_utf8($str) { // preg_replace will return NULL on invalid UTF-8 input. - return preg_replace('//u', '', $str); + // + // Note: empty regex //u also caused NULL return on some + // production machines, but none of our test machines. + // + // This should be replaced with a more reliable check. + return preg_replace('/\x00/u', '', $str); } /**