-------------------------
If you use a style for phpBB 3.0.5 or lower on phpBB 3.0.6, then you can only use the GD and non-GD default CAPTCHA's. Using an other Captcha Plugin will make it impossible to register due to the style changes since phpBB 3.0.6.
You will also miss the Quick Reply, Feeds, and more.. so updating to a 3.0.6 style is strongly recommended.
-------------------------
Orignal topic content: (may be outdated now)
Let's take a look at some of the SVN code first. (It's Revision 9524)
So what's changed in prosilver's ucp_register.html in the latest SVN version?
The
<!-- IF S_CONFIRM_CODE -->
<!-- IF S_CAPTCHA -->
And the CONFIRM_CODE:
- Code: Select all
<dl>
<dt><label for="confirm_code">{L_CONFIRM_CODE}:</label></dt>
<dd>{CONFIRM_IMG}</dd>
<dd><input type="text" name="confirm_code" id="confirm_code" size="8" maxlength="8" class="inputbox narrow" title="{L_CONFIRM_CODE}" /></dd>
<dd>{L_CONFIRM_CODE_EXPLAIN}<!-- IF S_CONFIRM_REFRESH --> {L_VC_REFRESH_EXPLAIN}<!-- ENDIF --></dd>
<!-- IF S_CONFIRM_REFRESH --><dd><input type="submit" value="{L_VC_REFRESH}" class="button2" /></dd> <!-- ENDIF -->
</dl>
- Code: Select all
{S_CAPTCHA}
Developer Henry Sudhof wrote:We'll add dynamic template includes later, as well as documentation on how to use this.
So they will change more about it, but with this change already, will cause the CAPTCHA to be hidden from styles for 3.0.5 and older because
S_CONFIRM_CODE
<!-- IF S_CONFIRM_CODE -->
A preview of the new CAPTCHA options
But the good thing about this is, that there will be more options (and spammers cannot focus on 1 CAPTCHA for phpBB3 anymore)
What do think about this, good method to keep spammers longer away?
