Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2210,20 +2210,6 @@ |
2211 | 2211 | } |
2212 | 2212 | |
2213 | 2213 | /** |
2214 | | - * Encrypt a username/password. |
2215 | | - * |
2216 | | - * @param $userid Integer: ID of the user |
2217 | | - * @param $password String: password of the user |
2218 | | - * @return String: hashed password |
2219 | | - * @deprecated since 1.13 Use User::crypt() or User::oldCrypt() instead |
2220 | | - */ |
2221 | | -function wfEncryptPassword( $userid, $password ) { |
2222 | | - wfDeprecated(__FUNCTION__); |
2223 | | - # Just wrap around User::oldCrypt() |
2224 | | - return User::oldCrypt( $password, $userid ); |
2225 | | -} |
2226 | | - |
2227 | | -/** |
2228 | 2214 | * Appends to second array if $value differs from that in $default |
2229 | 2215 | * |
2230 | 2216 | * @param $key String|Int |
Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1974,12 +1974,6 @@ |
1975 | 1975 | return self::makeKnownLinkObj( $nt, $text, $query, $trail, $prefix, '', $style ); |
1976 | 1976 | } |
1977 | 1977 | |
1978 | | - /** Obsolete alias */ |
1979 | | - static function makeImage( $url, $alt = '' ) { |
1980 | | - wfDeprecated( __METHOD__ ); |
1981 | | - return self::makeExternalImage( $url, $alt ); |
1982 | | - } |
1983 | | - |
1984 | 1978 | /** |
1985 | 1979 | * Creates the HTML source for images |
1986 | 1980 | * @deprecated since 1.16 use makeImageLink2 |