From 164801a42cee67ce235a0759e0f2f40ac745e188 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 9 Jan 2006 03:52:24 +0000 Subject: [PATCH] forgot this --- includes/Title.php | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) 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 ); } /** -- 2.20.1