From: Aaron Schulz Date: Sun, 10 Apr 2011 06:07:34 +0000 (+0000) Subject: Made revText() give deprecated notice X-Git-Tag: 1.31.0-rc.0~30957 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=0414f53cd41ed05a2829d5593a478d96d3024dab;p=lhc%2Fweb%2Fwiklou.git Made revText() give deprecated notice --- diff --git a/includes/Revision.php b/includes/Revision.php index f61b3108bd..5c2dda0ff8 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -607,6 +607,7 @@ class Revision { * @return String */ public function revText() { + wfDeprecated(); return $this->getText( self::FOR_THIS_USER ); }