Changeset 2652 for trunk/system/config/captcha.php
- Timestamp:
- 05/07/2008 09:24:19 AM (7 months ago)
- Files:
-
- 1 modified
-
trunk/system/config/captcha.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/captcha.php
r2535 r2652 12 12 */ 13 13 $config['width'] = 150; 14 $config['height'] = 40;14 $config['height'] = 50; 15 15 16 16 /** … … 19 19 * 'standard' is the recommended style. A font must be supplied. A background 20 20 * image is optional. 21 * 'alphasoup' is an alternative style. A font must be supplied. 21 22 * 'math' is a 'solve the question' style. 22 23 * A font must be supplied. A background image is optional. 23 24 * Custom styles can be added easily by extending the library. 24 25 */ 25 $config['style'] = ' basic';26 $config['style'] = 'standard'; 26 27 27 28 /** … … 35 36 * If using 'standard' style, you must supply a valid truetype font file. 36 37 */ 37 $config['font_path'] = '';38 $config['font_path'] = SYSPATH.'fonts/'; 38 39 39 40 /** 40 41 * Name of the font, with the file extension. Case sensitive. 41 42 */ 42 $config['font_name'] = ' ';43 $config['font_name'] = 'DejaVuSerif.ttf'; 43 44 44 45 /**
