Added spaces before and removed spaces after 'array'
[lhc/web/wiklou.git] / languages / classes / LanguageEo.php
index 3c16248..6cddddb 100644 (file)
@@ -63,7 +63,7 @@ class LanguageEo extends Language {
                if ( strcasecmp( $in, 'x' ) == 0 && strcasecmp( $out, 'utf-8' ) == 0 ) {
                        return preg_replace_callback (
                                '/([cghjsu]x?)((?:xx)*)(?!x)/i',
-                               array( $this, 'strrtxuCallback' ), $string      );
+                               array( $this, 'strrtxuCallback' ), $string );
                } elseif ( strcasecmp( $in, 'UTF-8' ) == 0 && strcasecmp( $out, 'x' ) == 0 ) {
                        # Double Xs only if they follow cxapelutaj literoj.
                        return preg_replace_callback(
@@ -78,7 +78,7 @@ class LanguageEo extends Language {
         * @return string
         */
        function strrtuxCallback( $matches ) {
-               static $ux = array (
+               static $ux = array(
                        'x' => 'xx' , 'X' => 'Xx' ,
                        "\xc4\x88" => "Cx" , "\xc4\x89" => "cx" ,
                        "\xc4\x9c" => "Gx" , "\xc4\x9d" => "gx" ,
@@ -95,7 +95,7 @@ class LanguageEo extends Language {
         * @return string
         */
        function strrtxuCallback( $matches ) {
-               static $xu = array (
+               static $xu = array(
                        'xx' => 'x' , 'xX' => 'x' ,
                        'Xx' => 'X' , 'XX' => 'X' ,
                        "Cx" => "\xc4\x88" , "CX" => "\xc4\x88" ,