summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6b82542)
There was a bug that the bookmarkExists() always return false by the mysqli driver.
if ($rownum > -1)
{
@mysqli_data_seek($query_id, $rownum);
if ($rownum > -1)
{
@mysqli_data_seek($query_id, $rownum);
- $row = @mysqli_fetch_assoc($query_id);
+ $row = @mysqli_fetch_row($query_id);
$result = isset($row[$field]) ? $row[$field] : false;
}
else
$result = isset($row[$field]) ? $row[$field] : false;
}
else