You are here

function vkxp_captcha_page in VK CrossPoster 6.2

Provides special form for captcha.

1 string reference to 'vkxp_captcha_page'
vkxp_menu in ./vkxp.module
Implementation of hook_menu().

File

./vkxp.pages.inc, line 11
vkxp.pages.inc Contains all forms for VKXP modue.

Code

function vkxp_captcha_page() {
  if (isset($_REQUEST['image']) && $_REQUEST['image']) {
    $form = drupal_get_form('vkxp_captcha_form', $_REQUEST['image']);
    return $form;
  }
  else {
    drupal_access_denied();
  }
}