Couldn't access list of Categories
Verfasst: 09.06.2003 16:41
Danke. Jetzt habe ich die Dateien ersetzt und:
Was soll ich da machen?Couldn't access list of Categories
DEBUG MODE
SQL Error : 1054 Unknown column 'cat_main' in 'where clause'
select * from phpbb_categories where cat_main = 0 order by cat_order, cat_id
Line : 131
File : /home/www/web4/html/phpBB/admin/admin_forums.php
s_cat = implode( ', ', $t_cat );
$t_cat = array();
$sql = "select * from " . CATEGORIES_TABLE . " where cat_id in ($s_cat)";
if ( !($result = $db->sql_query($sql)) ) message_die(GENERAL_ERROR, "Couldn't obtain category list.", "", __LINE__, __FILE__, $sql);
while ( $row = $db->sql_fetchrow($result) )
{
if ( !in_array($row['cat_main'], $catlist) )
{
$catlist[] = $row['cat_main'];
$t_cat[] = $row['cat_main'];