fix missing bracket

This commit is contained in:
Nathan Coad
2017-11-25 17:46:05 +11:00
parent 0f260a1675
commit 85249b475f

View File

@@ -951,11 +951,12 @@ function booking_form($node, &$form_state, $inserting = FALSE, $early_access_all
);
}
$form['cache'] = '#cache' => array(
'cid' => 'booking_data',
'bin' => 'cache_booking',
'expire' => time() + 360,
),
$form['cache'] = array('#cache' => array(
'cid' => 'booking_data',
'bin' => 'cache_booking',
'expire' => time() + 360,
),
);
if ($inserting == TRUE) {
$form['submit'] = array(