From 58d34d95f388c2161b910ae2153e3a9b78d2958d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 3 Mar 2012 20:22:18 +0000 Subject: [PATCH] DatabaseBase::selectRow() return a simple object, not a ResultWrapper instance --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 6efaa0f0dd..e60f3875cb 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -1456,7 +1456,7 @@ abstract class DatabaseBase implements DatabaseType { * @param $options string|array Query options * @param $join_conds array|string Join conditions * - * @return ResultWrapper|bool + * @return object|bool */ function selectRow( $table, $vars, $conds, $fname = 'DatabaseBase::selectRow', $options = array(), $join_conds = array() ) -- 2.20.1