davidc Sun Mar 25 08:13:41 2007 UTC
Modified files:
/pearweb/public_html/notes add-note-form.php add-note.php
Log:
- () on objects so christian can read once
http://cvs.php.net/viewvc.cgi/pearweb/public_html/notes/add-note-form.php?r1=1.5&r2=1.6&diff_format=u
Index: pearweb/public_html/notes/add-note-form.php
diff -u pearweb/public_html/notes/add-note-form.php:1.5
pearweb/public_html/notes/add-note-form.php:1.6
--- pearweb/public_html/notes/add-note-form.php:1.5 Sun Mar 25 08:07:51 2007
+++ pearweb/public_html/notes/add-note-form.php Sun Mar 25 08:13:41 2007
@@ -11,7 +11,7 @@
*/
require_once 'Text/CAPTCHA/Numeral.php';
-$captcha = new Text_CAPTCHA_Numeral;
+$captcha = new Text_CAPTCHA_Numeral();
/**
* This parameter should be passed from the
http://cvs.php.net/viewvc.cgi/pearweb/public_html/notes/add-note.php?r1=1.8&r2=1.9&diff_format=u
Index: pearweb/public_html/notes/add-note.php
diff -u pearweb/public_html/notes/add-note.php:1.8
pearweb/public_html/notes/add-note.php:1.9
--- pearweb/public_html/notes/add-note.php:1.8 Sun Mar 25 08:07:51 2007
+++ pearweb/public_html/notes/add-note.php Sun Mar 25 08:13:41 2007
@@ -52,7 +52,7 @@
require_once 'Text/CAPTCHA/Numeral.php';
- $captcha = new Text_CAPTCHA_Numeral;
+ $captcha = new Text_CAPTCHA_Numeral();
$spamCheck = $captcha->getOperation();
$_SESSION['answer'] = $captcha->getAnswer();
}
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|