
02-01-2004, 05:13 PM
|
 |
|
|
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by mtf169
I have forums 3,4 for my news and also had them listed in the forum exclusion. After removing them from the exclusion list I made the code change again and get this error:
Parse error: parse error in /home2/www/numbmonkey/index.php on line 189
This is what the code looks like in my index.php file:
PHP Code:
// user configured forumids to exclude
if (!empty($vbindex['limitfids'])) {
$limitfids = array();
++++$limitfids = explode(',', $vbindex['limitfids']);
foreach($limitfids AS $key => $value) {
$limitfids["$key"] = intval($value);
}
} else {
$limitfids = array(0);
}
I'm so stumped as to what I'm doing wrong.
|
Those 4 + symbols shouldn't be there.
|