aboutsummaryrefslogtreecommitdiff
path: root/h-source/Library/Db
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2013-10-14 16:06:56 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2013-10-14 16:06:56 +0000
commita93461b231fb94f3a6a9df09a30557732201ddcc (patch)
treef278951ee7746da2a618ec57043c57fafe779c1d /h-source/Library/Db
parent6fa0219202ce4ccc5c4592e66031bb0f7f8be2b0 (diff)
added new EasyGiant Library
Diffstat (limited to 'h-source/Library/Db')
-rwxr-xr-xh-source/Library/Db/Mysql.php3
-rw-r--r--h-source/Library/Db/Mysqli.php3
2 files changed, 4 insertions, 2 deletions
diff --git a/h-source/Library/Db/Mysql.php b/h-source/Library/Db/Mysql.php
index 4561a1b..d19d24a 100755
--- a/h-source/Library/Db/Mysql.php
+++ b/h-source/Library/Db/Mysql.php
@@ -270,7 +270,8 @@ class Db_Mysql {
$result = mysql_query($query);
$temp = array();
while ($row = mysql_fetch_assoc($result)) {
- $temp[$row['Field']] = reset(explode('(',$row['Type']));
+ $e = explode('(',$row['Type']);
+ $temp[$row['Field']] = reset($e);
}
$types = array();
diff --git a/h-source/Library/Db/Mysqli.php b/h-source/Library/Db/Mysqli.php
index df57a54..b65f470 100644
--- a/h-source/Library/Db/Mysqli.php
+++ b/h-source/Library/Db/Mysqli.php
@@ -273,7 +273,8 @@ class Db_Mysqli
$result = $this->db->query($query);
$temp = array();
while ($row = $result->fetch_assoc()) {
- $temp[$row['Field']] = reset(explode('(',$row['Type']));
+ $e = explode('(',$row['Type']);
+ $temp[$row['Field']] = reset($e);
}
$result->close();