Forráskód Böngészése

phpdoc should ignore these three functions

tokul 21 éve
szülő
commit
9d2acefa9a
1 módosított fájl, 12 hozzáadás és 0 törlés
  1. 12 0
      functions/i18n.php

+ 12 - 0
functions/i18n.php

@@ -602,16 +602,28 @@ elseif ($gettext_flags == 0) {
 } else {
     /* Uh-ho.  A weird install */
     if (! $gettext_flags & 1) {
+	/**
+	 * Function is used as replacement in broken installs
+	 * @ignore
+	 */
         function _($str) {
             return $str;
         }
     }
     if (! $gettext_flags & 2) {
+	/**
+	 * Function is used as replacement in broken installs
+	 * @ignore
+	 */
         function bindtextdomain() {
             return;
         }
     }
     if (! $gettext_flags & 4) {
+	/**
+	 * Function is used as replacemet in broken installs
+	 * @ignore
+	 */
         function textdomain() {
             return;
         }