* @copyright SOTE * @license SOTE * @version $Id: stCaptchaGDHelper.php 11 2009-08-24 09:33:22Z michal $ */ /** * Pobieranie obrazka z captchÄ… * * @return string */ function get_captcha($imageWidth = '', $imageHeight = '') { if (empty($imageWidth)) $imageWidth = sfConfig::get('app_sf_captchagd_image_width', 100); if (empty($imageHeight)) $imageHeight = sfConfig::get('app_sf_captchagd_image_height', 30); return ''; }