1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

- more bugfixes

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5211 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2005-09-18 16:17:21 +00:00
parent 1b00e321b9
commit ba629b808d
8 changed files with 26 additions and 29 deletions

View File

@@ -259,7 +259,7 @@ class sql_db
{
if($this->rowset[$query_id])
{
$result = $this->rowset[$query_id][$field];
$result = $this->rowset[$query_id][0][$field];
}
else if($this->row[$query_id])
{

View File

@@ -271,7 +271,7 @@ class sql_db
{
if( $this->rowset[$query_id] )
{
$result = $this->rowset[$query_id][$field];
$result = $this->rowset[$query_id][0][$field];
}
else if( $this->row[$query_id] )
{