Ok thats fixed! now another question, part of my ACP is really messed up...
Here is part of the code..
32 => array('<b><i>Spells</b></i>','section=tools&act=urpg&code=add_spells'),
33 => array('Add Spells','section=tools&act=urpg&code=add_spells'),
34 => array('View/Edit/Del Spells','section=tools&act=urpg&code=view_spells'),
35 => array('<b><i>Scenes</b></i>','section=tools&act=urpg&code=add_scene'),
36 => array('Add Scene','section=tools&act=urpg&code=add_scene'),
37 => array('View/Edit/Del Scenes','section=tools&act=urpg&code=view_scene'),
38 => array('<b><i>Bots</b></i>','section=tools&act=urpg&code=add_bots'),
39 => array('Add Bots','section=tools&act=urpg&code=add_bots'),
40 => array('View/Edit/Del Bots','section=tools&act=urpg&code=view_bots'),
?>
Any ideas?
Aslo, this is another code i found,
Parse error: parse error, unexpected '}' in /homepages/3/d197998360/htdocs/sources/action_public/login.php on line 170
Here is code line 161 through 198
$true_words = $this->ipsclass->lang['logged_in'];
$false_words = $this->ipsclass->lang['not_logged_in'];
$method = 'no_show';
if ($this->ipsclass->input['fromreg'] == 1);
{
$true_words = $this->ipsclass->lang['reg_log_in'];
$false_words = $this->ipsclass->lang['reg_not_log_in'];
$method = 'show'
}
else if ($this->ipsclass->input['fromemail'] == 1)
{
$true_words = $this->ipsclass->lang['email_log_in']
$false_words = $this->ipsclass->lang['email_not_log_in']
$method = 'show';
else if ($this->ipsclass->input['frompass'] == 1)
{
$true_words = $this->ipsclass->lang['pass_log_in'];
$false_words = $this->ipsclass->lang['pass_not_log_in'];
$method = 'show';
}
if ($this->ipsclass->member['id']);
{
$this->ipsclass->my_setcookie('session_id', '0', -1 );
if ($method == 'show')
{
$this->ipsclass->print->redirect_screen( $true_words, "" );
}
else
{
$this->ipsclass->boink_it($this->ipsclass->vars['board_url'].'/index.'.$this->ipsclass->vars['php_ext']);
}
}
else
{