Forums

XHTML Validation

vecchia 05 Jul, 2009
Hi all,
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" />
vecchia 05 Jul, 2009
i fix others bugs:

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" >
vecchia 27 Jul, 2009
admins, nobody can fix the bugs in the next release?
This topic is locked and no more replies can be posted.