From bb0708b1d5ce98f6bdd050542bf687047b6edf3a Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 6 Jan 2018 16:39:32 +0100 Subject: [PATCH] Add Documentation --- include/lib/database.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lib/database.class.php b/include/lib/database.class.php index c67044e40..035199552 100644 --- a/include/lib/database.class.php +++ b/include/lib/database.class.php @@ -965,12 +965,12 @@ class Database return pg_fetch_result($ret, $p_row, $p_col); } - /**\brief wrapper for the function pg_fetch_row + /** + * \brief wrapper for the function pg_fetch_row * \param $ret is the result of pg_exec (exec_sql) * \param $p_row is the indice of the row * \return an array indexed from 0 */ - static function fetch_row($ret, $p_row) { return pg_fetch_row($ret, $p_row);