From: Rob Church Date: Wed, 22 Mar 2006 17:16:53 +0000 (+0000) Subject: Fix stupid cockup -> $res->user_text not $res_user_text X-Git-Tag: 1.6.0~166 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=328cf1e91972df6872ae2dad79d7cbb82115c4c9;p=lhc%2Fweb%2Fwiklou.git Fix stupid cockup -> $res->user_text not $res_user_text --- diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php index 2d61a47afe..089ce44430 100644 --- a/includes/SpecialNewpages.php +++ b/includes/SpecialNewpages.php @@ -63,7 +63,7 @@ class NewPagesPage extends QueryPage { $linkBatch = new LinkBatch(); while( $row = $dbo->fetchObject( $res ) ) { $linkBatch->addObj( Title::makeTitleSafe( NS_USER, $res->user_text ) ); - $linkBatch->addObj( Title::makeTitleSafe( NS_USER_TALK, $res_user_text ) ); + $linkBatch->addObj( Title::makeTitleSafe( NS_USER_TALK, $res->user_text ) ); } $linkBatch->execute(); # Seek to start