function common_test_drupal_goto_alter in Drupal 7
Implements hook_drupal_goto_alter().
File
- modules/
simpletest/ tests/ common_test.module, line 101 - Helper module for the Common tests.
Code
function common_test_drupal_goto_alter(&$path, &$options, &$http_response_code) {
if ($path == 'common-test/drupal_goto/fail') {
$path = 'common-test/drupal_goto/redirect';
}
}