aboutsummaryrefslogtreecommitdiffstats
path: root/include/dblayer/functions_mysql.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/dblayer/functions_mysql.inc.php')
-rw-r--r--include/dblayer/functions_mysql.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/dblayer/functions_mysql.inc.php b/include/dblayer/functions_mysql.inc.php
index f8182bdf4..2fbf8d3e9 100644
--- a/include/dblayer/functions_mysql.inc.php
+++ b/include/dblayer/functions_mysql.inc.php
@@ -144,6 +144,11 @@ function pwg_db_num_rows($result)
return mysql_num_rows($result);
}
+function pwg_db_fetch_array($result)
+{
+ return mysql_fetch_array($result);
+}
+
function pwg_db_fetch_assoc($result)
{
return mysql_fetch_assoc($result);