I checked the database:
Code: Select all
(41, 'Phoca Guestbook', 'option=com_phocaguestbook', [...]display_form=1\n[b]form_position=1[/b]\n[...]send_mail=0\n\n', 1),
Then I found "..\components\com_phocaguestbook\views\phocaguestbook\tmpl\default.php" where there are the code parts
Code: Select all
if ($this->config['position'] ==1) {
echo $msgpg;
}
Code: Select all
if ($this->config['position'] ==0) {
echo $msgpg;
}

Concluding, I think that somehow the part
Code: Select all
//Select the position, add V A L U E S
if ($params->get( 'form_position' ) != '') {$config['position'] = $params->get( 'form_position' );}
else {$config['position'] = 0;}
if ($params->get( 'max_url' ) != '') {$config['maxurl'] = $params->get( 'max_url' );}
else {$config['maxurl'] = 5;}
if ($params->get( 'enable_captcha' ) != '') {$require['captcha'] = $params->get( 'enable_captcha' );}
else {$require['captcha'] = 1;}