From: Tim Starling Date: Mon, 9 Jan 2006 03:52:24 +0000 (+0000) Subject: forgot this X-Git-Tag: 1.6.0~666 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=164801a42cee67ce235a0759e0f2f40ac745e188;p=lhc%2Fweb%2Fwiklou.git forgot this --- diff --git a/includes/Title.php b/includes/Title.php index 5951552a56..4649a4ae99 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1956,26 +1956,13 @@ class Title { /** * Get an associative array for selecting this title from - * the "cur" table + * the "page" table * * @return array * @access public */ - function curCond() { - wfDebugDieBacktrace( 'curCond called' ); - return array( 'cur_namespace' => $this->mNamespace, 'cur_title' => $this->mDbkeyform ); - } - - /** - * Get an associative array for selecting this title from the - * "old" table - * - * @return array - * @access public - */ - function oldCond() { - wfDebugDieBacktrace( 'oldCond called' ); - return array( 'old_namespace' => $this->mNamespace, 'old_title' => $this->mDbkeyform ); + function pageCond() { + return array( 'page_namespace' => $this->mNamespace, 'page_title' => $this->mDbkeyform ); } /**