Quote:
Originally Posted by adultphotos4u Hello Chuck,
Is it possible to display the captcha box above the submit button?
Currently its showing below the submit button. |
from line 87-102 in the new quickcom.tmpl
Move:
Quote:
if ( $newid > 0 ) {
$comq .= <<<PPPRINT
<tr>
<td align="left" class="{$Style['menubar']}" colspan="2">
Image Verification (please enter the code on the left in the box on the right)
</td>
</tr>
<tr>
<td class="{$Style['tddetails']}" align="center"><img src="{$Globals['maindir']}/cap.php?c=$newid" border="0" alt="*" /></td>
<td class="{$Style['tddetails']}" align="left">
<input type="text" name="rpass" size="10" />
<input type="hidden" name="cap" value="$newid" />
</td>
</tr>
PPPRINT;
}
|
Above:
Quote:
$comq .= <<<PPPRINT
<tr>
<td class="{$Style['tddetails']}">
{$Globals['pp_lang']['comments']}:<br /><br />
<span class="{$Style['small']}"><a href="javascript:PopUpHelp('help/ubbcode.php')">{$Globals['pp_lang']['bbcode']}</a><br />
<a href="javascript:PopUpHelp('help/smilies.php')">{$Globals['pp_lang']['smilies']}</a></span></span>
</td>
<td class="{$Style['tddetails']}">
<textarea name="message" cols="80" rows="5"></textarea>
</td>
</tr>
<tr>
<td class="{$Style['tddetails']}" colspan="2" align="center">
<input type="hidden" name="cat" value="$cat" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="puserid" value="{$User['userid']}" />
<input type="hidden" name="photo" value="$photo" />
<input type="hidden" name="post" value="new" />
<input type="submit" value="{$Globals['pp_lang']['submit']}" />
</td>
</tr>
PPPRINT;
|
this will place it above the comment box