<?php  
class ControllerModuleIcustomfooter extends Controller {
	public function captcha() {
		$this->load->library('icustomfooter_captcha');
		
		$captcha = new Captcha();
		
		$this->session->data['icustomfooter_captcha'] = $captcha->getCode();
		
		$captcha->showImage();
	}
}
?>