|
|
| |
1. it's a litle mistake in documentatoion |
|
Reply |
|
|
 Evgenij | 2008-06-27 16:27:54 |
In doc's expamples you wrote something like this:
$captcha = new CSniperCaptcha(5, 'btn_submit');
CSniperCaptcha::DrawRefs();
But it seems to me that's not correct.
$captcha = new CSniperCaptcha(5, 'btn_submit');
$captcha->DrawRefs();
When i did like this it start working correctly.
|
| |
2. Re: it's a litle mistake in documentatoion |
|
Reply |
|
|
 Alexander Selifonov | 2008-06-28 04:10:24 - In reply to message 1 from Evgenij |
| The both calls should work. The only difference is when You need "buffered" output (to the var instead of echoing), You should not call static (CSniperCaptcha::DrawRefs()) because there is no object that remembers "buffered" state. |
|