This commit is contained in:
Karl Burkhart
2010-11-08 10:33:37 +00:00
parent 6a5167fc82
commit 1069f6493c
+4 -4
View File
@@ -67,7 +67,7 @@ class sprache extends basis_db
$this->sprache = $row->sprache;
$this->locale = $row->locale;
$this->index = $row->index;
//$this->content = $row->content;
$this->content = ($row->content=='t'?true:false);
}
return true;
}
@@ -87,17 +87,17 @@ class sprache extends basis_db
return false;
}
if($row = $this->db_fetch_object())
while($row = $this->db_fetch_object())
{
$sprache = new sprache();
$sprache->sprache = $row->sprache;
$sprache->locale = $row->locale;
$sprache->index = $row->index;
//$sprache->content = $row->content;
$sprache->content = ($row->content=='t'?true:false);
$this->result[] = $sprache;
}
return true;
return true;
}
/**