Skip to content
Snippets Groups Projects
Commit a9d002a3 authored by Eric Bremner's avatar Eric Bremner
Browse files

RT#427026: Fixed issue with not having ==.

parent 097f6444
No related branches found
Tags 7.x-1.5.8.2-rc2
No related merge requests found
......@@ -25,7 +25,7 @@ function uw_ct_opportunities_block_info() {
* Add in validation
*/
function uw_ct_opportunities_form_alter(&$form, &$form_state, $form_id) {
if($form_id = 'uw_opportunities_node_form') {
if($form_id == 'uw_opportunities_node_form') {
$form['actions']['submit']['#validate'][] = 'uw_ct_opportunities_validation';
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment