Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2457,13 +2457,6 @@ |
2458 | 2458 | } |
2459 | 2459 | |
2460 | 2460 | /** |
2461 | | - * @deprecated use StringUtils::escapeRegexReplacement |
2462 | | - */ |
2463 | | -function wfRegexReplacement( $string ) { |
2464 | | - return StringUtils::escapeRegexReplacement( $string ); |
2465 | | -} |
2466 | | - |
2467 | | -/** |
2468 | 2461 | * Return the final portion of a pathname. |
2469 | 2462 | * Reimplemented because PHP5's basename() is buggy with multibyte text. |
2470 | 2463 | * http://bugs.php.net/bug.php?id=33898 |
— | — | @@ -2675,13 +2668,6 @@ |
2676 | 2669 | } |
2677 | 2670 | |
2678 | 2671 | /** |
2679 | | - * @deprecated use StringUtils::explodeMarkup |
2680 | | - */ |
2681 | | -function wfExplodeMarkup( $separator, $text ) { |
2682 | | - return StringUtils::explodeMarkup( $separator, $text ); |
2683 | | -} |
2684 | | - |
2685 | | -/** |
2686 | 2672 | * Convert an arbitrarily-long digit string from one numeric base |
2687 | 2673 | * to another, optionally zero-padding to a minimum column width. |
2688 | 2674 | * |
— | — | @@ -2795,15 +2781,6 @@ |
2796 | 2782 | } |
2797 | 2783 | } |
2798 | 2784 | |
2799 | | -/** |
2800 | | - * Alias for modularized function |
2801 | | - * @deprecated Use Http::isLocalURL() instead |
2802 | | - */ |
2803 | | -function wfIsLocalURL( $url ) { |
2804 | | - wfDeprecated(__FUNCTION__); |
2805 | | - return Http::isLocalURL( $url ); |
2806 | | -} |
2807 | | - |
2808 | 2785 | function wfHttpOnlySafe() { |
2809 | 2786 | global $wgHttpOnlyBlacklist; |
2810 | 2787 | if( !version_compare("5.2", PHP_VERSION, "<") ) |