Index: trunk/phase3/includes/Title.php |
— | — | @@ -1992,9 +1992,12 @@ |
1993 | 1993 | * have description pages in the database, but the description page contains |
1994 | 1994 | * useful history information that the user may want to link to. |
1995 | 1995 | * |
| 1996 | + * Interwiki links are not in this category because of icky pass-interaction |
| 1997 | + * issues. Anything containing http:// gets mangled later. Local URLs use |
| 1998 | + * relative paths. |
1996 | 1999 | */ |
1997 | 2000 | function isAlwaysKnown() { |
1998 | | - return $this->isExternal() || ( 0 == $this->mNamespace && "" == $this->mDbkeyform ) |
| 2001 | + return ( 0 == $this->mNamespace && "" == $this->mDbkeyform ) |
1999 | 2002 | || NS_SPECIAL == $this->mNamespace || NS_IMAGE == $this->mNamespace; |
2000 | 2003 | } |
2001 | 2004 | |