| Date: Mon, 24 Aug 2015 10:31:25 +0200
check for deglaciation age and its uncertainty
Diffstat:
M uploadhistory.php | 5 +++++
1 file changed, 5 insertions(+), 0 deletions(-)
--- |
| t@@ -41,6 +41,9 @@ if (!isset($_POST['epsilon_int_max']) || $_POST['epsilon_int_max'] == '') {
if (!isset($_POST['t_degla']) || $_POST['t_degla'] == '') {
array_push($missing_fields, 'Time since deglaciation');
}
+if (!isset($_POST['uncer_t_degla']) || $_POST['uncer_t_degla'] == '') {
+ array_push($missing_fields, 'Uncertainty of time since deglaciation');
+}
if (!isset($_POST['d18O_threshold_min']) || $_POST['d18O_threshold_min'] == ''){
array_push($missing_fields, 'Min. δ18O threshold value');
}
t@@ -135,6 +138,8 @@ $fieldnames = array(
'epsilon_gla_max',
'epsilon_int_min',
'epsilon_int_max',
+ 't_degla',
+ 'uncer_t_degla',
'd18O_smoothing', // check if set missing
'd18O_threshold_min',
'd18O_threshold_max'); |