Our release manager believes I need to be shot. I am a mindless drone without opinion...
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
index b39a8ab..6ab81e5 100644 (file)
@@ -326,20 +326,6 @@ function wfMsg( $key ) {
        return wfMsgReal( $key, $args, true );
 }
 
-/**
- * Get a message in the user interface language and replace wiki
- * links with clickable ones, escaping other HTML
- *
- * @param string $key Message key
- * @return string
- */
-function wfMsgWithLinks( $key ) {
-       global $wgUser;
-       $args = func_get_args();
-       return $wgUser->getSkin()->formatLinksInComment( htmlspecialchars(
-               call_user_func_array( 'wfMsg', $args ) ) );
-}
-
 /**
  * Same as above except doesn't transform the message
  */
@@ -382,19 +368,6 @@ function wfMsgForContent( $key ) {
        return wfMsgReal( $key, $args, true, $forcontent );
 }
 
-/**
- * Get a message in the content language and replace wiki
- * links with clickable ones, escaping other HTML
- *
- * @param string $key Message key
- * @return string
- */
-function wfMsgForContentWithLinks( $key ) {
-       global $wgUser;
-       return $wgUser->getSkin()->formatLinksInComment( htmlspecialchars(
-               call_user_func_array( 'wfMsgForContent', func_get_args() ) ) );
-}
-
 /**
  * Same as above except doesn't transform the message
  */