aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2009-11-21 12:41:13 +0000
committernikrou <nikrou@piwigo.org>2009-11-21 12:41:13 +0000
commitdaa877aa8a5ae78b81ecc0a6cf88b87dc2fd2cf4 (patch)
tree63f3747ff3afc2b8e102e98d6fb3049bb81d5b0c
parentf0d0a0952c9889323d60bec249df0fccf286d1a6 (diff)
Feature 1244 : misspelled functions pwg_db_free_result() (db missing)
git-svn-id: http://piwigo.org/svn/trunk@4332 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/dblayer/functions_mysql.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dblayer/functions_mysql.inc.php b/include/dblayer/functions_mysql.inc.php
index 78b97c712..13a712eba 100644
--- a/include/dblayer/functions_mysql.inc.php
+++ b/include/dblayer/functions_mysql.inc.php
@@ -132,7 +132,7 @@ function pwg_db_fetch_object($result)
return mysql_fetch_object($result);
}
-function pwg_free_result($result)
+function pwg_db_free_result($result)
{
return mysql_free_result($result);
}