* Fixed a bug where moving a page would cause the following SQL error when
[lhc/web/wiklou.git] / includes / Utf8Case.php
index 996070a..9a2c730 100644 (file)
@@ -1,12 +1,19 @@
-<?
-# Simple 1:1 upper/lowercase switching arrays for utf-8 text
-# Won't get context-sensitive things yet
-
-# Hack for bugs in ucfirst() and company
-
-# These are pulled from memcached if possible, as this is faster than filling
-# up a big array manually. See also languages/LanguageUtf8.php
+<?php
+/**
+ * Simple 1:1 upper/lowercase switching arrays for utf-8 text
+ * Won't get context-sensitive things yet
+ *
+ * Hack for bugs in ucfirst() and company
+ *
+ * These are pulled from memcached if possible, as this is faster than filling
+ * up a big array manually. See also languages/LanguageUtf8.php
+ * @package MediaWiki
+ * @subpackage Language
+ */
 
+/*
+ * Translation array to get upper case character
+ */
 $wikiUpperChars = array(
        "a" => "A",
        "b" => "B",
@@ -755,6 +762,9 @@ $wikiUpperChars = array(
        "\xf0\x90\x91\x8d" => "\xf0\x90\x90\xa5"
 );
 
+/*
+ * Translation array to get lower case character
+ */
 $wikiLowerChars = array (
        "A" => "a",
        "B" => "b",
@@ -1493,4 +1503,4 @@ $wikiLowerChars = array (
        "\xf0\x90\x90\xa5" => "\xf0\x90\x91\x8d"
 );
 
-?>
\ No newline at end of file
+?>