From a88c178b91ff1342377b89b68965dcf7aaac725a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 28 Dec 2007 12:02:52 +0000 Subject: - Patch #204221 by webernet: code style fixes. --- includes/unicode.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/unicode.inc') diff --git a/includes/unicode.inc b/includes/unicode.inc index c58e81bb5..19c74422b 100644 --- a/includes/unicode.inc +++ b/includes/unicode.inc @@ -208,7 +208,7 @@ function drupal_convert_to_utf8($data, $encoding) { */ function drupal_truncate_bytes($string, $len) { if (strlen($string) <= $len) { - return $string; + return $string; } if ((ord($string[$len]) < 0x80) || (ord($string[$len]) >= 0xC0)) { return substr($string, 0, $len); -- cgit v1.2.3