diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-03-24 00:20:42 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-03-24 00:20:42 +0100 |
commit | 11213e4c0f1de094746e834ca6c8f547459703dd (patch) | |
tree | ffd2a5e98a7a975dd9c807666ee0d54a3d07432c /system | |
parent | be97bdc41601ead493287d67ac80cd5241ddc746 (diff) |
missing quotes
Diffstat (limited to 'system')
-rw-r--r-- | system/plugins/captcha_pi.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/plugins/captcha_pi.php b/system/plugins/captcha_pi.php index 7aa31efb1..2c82f70a1 100644 --- a/system/plugins/captcha_pi.php +++ b/system/plugins/captcha_pi.php @@ -245,7 +245,7 @@ function create_captcha($data = '', $img_path = '', $img_url = '', $font_path = // -----------------------------------
// PHP.net recommends imagecreatetruecolor(), but it isn't always available
- if (function_exists(imagecreatetruecolor))
+ if (function_exists('imagecreatetruecolor'))
{
$im = imagecreatetruecolor($img_width, $img_height);
}
|