(bug 7098) Add an option to disable/enable sending of HTTP ETag headers,
[lhc/web/wiklou.git] / includes / SpecialUserlogout.php
index 7f057a9..f3fcbc4 100644 (file)
@@ -12,15 +12,15 @@ function wfSpecialUserlogout() {
        global $wgUser, $wgOut;
 
        if (wfRunHooks('UserLogout', array(&$wgUser))) {
-               
+
                $wgUser->logout();
 
                wfRunHooks('UserLogoutComplete', array(&$wgUser));
-               
+
                $wgOut->setRobotpolicy( 'noindex,nofollow' );
-               $wgOut->addHTML( wfMsg( 'logouttext' ) );
+               $wgOut->addHTML( wfMsgExt( 'logouttext', array( 'parse' ) ) );
                $wgOut->returnToMain();
-               
+
        }
 }