Changeset 13545
- Timestamp:
- 11/22/07 11:07:39 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/MidCOM_2_8/midcom.helper.datamanager2/exec/captcha.php
r13539 r13545 38 38 ); 39 39 40 // Generate a new Text_CAPTCHA object, Image driver 40 /* Generate a new Text_CAPTCHA object, Image driver 41 * This is working at least with Text_CAPTCHAS latest alpha version. Older versions 42 * give missing font error 43 */ 44 41 45 $captcha = Text_CAPTCHA::factory('Image'); 42 //$result = $captcha->init($width, $height, $passphrase, $options); 43 $result = $captcha->init($height, $width, $passphrase, $options); 46 $result = $captcha->init($width, $height, $passphrase, $options); 47 // $result = $captcha->init($height, $width, $passphrase, $options); 48 44 49 if (PEAR::isError($result)) 45 50 {
