From 973713b2e9bc5c265502db226911caf32d96c58a Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 19 May 2008 17:02:58 +0000 Subject: [PATCH] $join_conds --- includes/Database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Database.php b/includes/Database.php index 6b8e9b050e..44ef02b3a3 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -1020,9 +1020,9 @@ class Database { * * @todo migrate documentation to phpdocumentor format */ - function selectRow( $table, $vars, $conds, $fname = 'Database::selectRow', $options = array() ) { + function selectRow( $table, $vars, $conds, $fname = 'Database::selectRow', $options = array(), $join_conds = array() ) { $options['LIMIT'] = 1; - $res = $this->select( $table, $vars, $conds, $fname, $options ); + $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds ); if ( $res === false ) return false; if ( !$this->numRows($res) ) { -- 2.20.1