Hi all,
i have big problems with chronocomments form validation. The url are of this type:
but for xhtml it must be
after that i solved two validation problem:
comment-form.html.php
replace this
with
replace this
with
i have big problems with chronocomments form validation. The url are of this type:
prova.html&variable=hello
but for xhtml it must be
prova.html&variable=hello
after that i solved two validation problem:
comment-form.html.php
replace this
<div id="post_x1_form_loading" style="text-align:center; display:none;"><img src="<?php echo JURI::Base(); ?>components/com_chronocomments/loader<?php echo $configs->get('loaderimage_color', 'b') ?>.gif"></div>
with
<div id="post_x1_form_loading" style="text-align:center; display:none;"><img src="<?php echo JURI::Base(); ?>components/com_chronocomments/loader<?php echo $configs->get('loaderimage_color', 'b') ?>.gif" alt="Caricamento" /></div
replace this
<img id="comment_captcha_img" class="comment_captcha_img" src="<?php echo JURI::Base(); ?>components/com_chronocomments/chrono_verification.php?imtype=<?php echo $configs->get('imtype'); ?>&anticache=<?php echo rand(1,99999); ?>">
with
<img id="comment_captcha_img" class="comment_captcha_img" src="<?php echo JURI::Base(); ?>components/com_chronocomments/chrono_verification.php?imtype=<?php echo $configs->get('imtype'); ?>&anticache=<?php echo rand(1,99999); ?>" alt="Captcha" />
i fix others bugs:
comment-form.html
replace this
with
comment-form.html
replace this
<form action="<?php if($configs->get('sh404SEF') == '1')echo JURI::Base(); ?><?php echo JRoute::_('index2.php?option=com_chronocomments&task=savecomment'); ?>" id="ccform_x1" name="ccform_x1" method="post" >
with
<form action="<?php if($configs->get('sh404SEF') == '1')echo JURI::Base(); ?><?php echo JRoute::_('index2.php?option=com_chronocomments&task=savecomment'); ?>" id="ccform_x1" name="ccform_x1" method="post" >
This topic is locked and no more replies can be posted.