mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-31 02:41:28 +00:00
fix db_fetch_result() functionality for MySQL
This commit is contained in:
5
db.php
5
db.php
@@ -96,9 +96,8 @@ function db_fetch_result($result, $row, $param) {
|
||||
if (DB_TYPE == "pgsql") {
|
||||
return pg_fetch_result($result, $row, $param);
|
||||
} else if (DB_TYPE == "mysql") {
|
||||
// FIXME
|
||||
$line = mysql_fetch_assoc($result);
|
||||
return $line[$param];
|
||||
// I hate incoherent naming of PHP functions
|
||||
return mysql_result($result, $row, $param);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user