X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fnormal%2FUtfNormal.php;h=f6f7dbb95ddaadbdd40885506ecc7732b2a6de4d;hb=0e675650aed26a742a9c2173d9469647a9f42bcc;hp=77ddb79b3d6e536c47e3e59a1aec2ae43404fc19;hpb=efed0f97b8a4b4e9acceb069fdebf8af08d5f467;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/normal/UtfNormal.php b/includes/normal/UtfNormal.php index 77ddb79b3d..f6f7dbb95d 100644 --- a/includes/normal/UtfNormal.php +++ b/includes/normal/UtfNormal.php @@ -3,7 +3,7 @@ * Unicode normalization routines * * Copyright © 2004 Brion Vibber - * http://www.mediawiki.org/ + * https://www.mediawiki.org/ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -190,7 +190,7 @@ class UtfNormal { */ static function loadData() { if( !isset( self::$utfCombiningClass ) ) { - require_once( __DIR__ . '/UtfNormalData.inc' ); + require_once __DIR__ . '/UtfNormalData.inc'; } } @@ -491,7 +491,7 @@ class UtfNormal { */ static function NFKD( $string ) { if( !isset( self::$utfCompatibilityDecomp ) ) { - require_once( 'UtfNormalDataK.inc' ); + require_once 'UtfNormalDataK.inc'; } return self::fastCombiningSort( self::fastDecompose( $string, self::$utfCompatibilityDecomp ) );