View file upload/library/XenForo/ViewPublic/AccountConfirmation/Resend.php

File size: 263B
<?php

class XenForo_ViewPublic_AccountConfirmation_Resend extends XenForo_ViewPublic_Base
{
	public function renderHtml()
	{
		if (!empty($this->_params['captcha']))
		{
			$this->_params['captcha'] = $this->_params['captcha']->render($this);
		}
	}
}