function example_fapi_changes in Coder 7
Same name and namespace in other branches
- 7.2 coder_upgrade/tests/old/samples/example.module \example_fapi_changes()
File
- coder_upgrade/
tests/ old/ samples/ example.module, line 1769
Code
function example_fapi_changes() {
$form['#redirect'] = 'node/1';
$form["#redirect"] = $node;
$form_state['#redirect'] = 'node/1';
$_REQUEST['destination'] = 'node/1';
$_REQUEST["destination"] = $node;
$_GET['destination'] = 'node/1';
}