Wednesday, February 27, 2008

Update 8.0.4 - Captcha Reload and Typo Fix

Here's the code to replace on template_permalink.asp:

Replace:

<p><img src='aspcaptcha.asp' alt='CAPTCHA' width='86' height='21' /><br />Write the characters in the image above<br /><input name='strCAPTCHA' type='text' id='strCAPTCHA' maxlength='8' /></p>

With:

<script type="text/javascript">
function reloadCAPTCHA() {
document.getElementById('CAPTCHA').src='aspcaptcha.asp?'+Date();
}
</script>

<p><img id="CAPTCHA" src='aspcaptcha.asp'
alt='CAPTCHA' width='86' height='21' />
<a href="javascript:reloadCAPTCHA();">Reload</a>
<br />Write the characters in the image above<br />
<input name='strCAPTCHA' type='text'
id='strCAPTCHA' maxlength='8' /></p>

Changelog

Monday, February 18, 2008

Gallery Pagination

Download per this request.

If you want the pagination amount to be something other than what you set you main page to (meaning, if you set 10 posts to show on your main page then the gallery amount is the same as this), then edit line 368.

BP Blog v8.0.3 - Updated fckeditor to version 2.5.1

 Download just the editor update for the full package.

Changelog