diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mysql.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mysql.php b/lib/mysql.php index 03ebdce..1860fdc 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -505,7 +505,7 @@ namespace { return mysql_result($result, $row, 'Database'); } - function mysql_table_name($result, $row) + function mysql_tablename($result, $row) { if (\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { // @codeCoverageIgnoreStart @@ -584,9 +584,9 @@ namespace { return mysql_db_name(... $args); } - function mysql_tablename(... $args) + function mysql_table_name(... $args) { - return mysql_table_name(... $args); + return mysql_tablename(... $args); } } } |