From 012de4c817708961a544dbe79ae466b52916f5ad Mon Sep 17 00:00:00 2001 From: Seth Meranda <smeranda2@unl.edu> Date: Mon, 24 Aug 2009 16:57:18 +0000 Subject: [PATCH] added a blank option for years attended. --- unl_theme/views/default/page_elements/header.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unl_theme/views/default/page_elements/header.php b/unl_theme/views/default/page_elements/header.php index 7d4323dd..fa6ebeb8 100644 --- a/unl_theme/views/default/page_elements/header.php +++ b/unl_theme/views/default/page_elements/header.php @@ -168,7 +168,7 @@ if ($vars['title'] == "Edit profile") { var selFrom = document.createElement("select"); selFrom.name = "form_data_profile_attended_from"; x = 1940; - html = "<option>Did Not Attend UNL</option>"; + html = "<option></option><option>Did Not Attend UNL</option>"; while (x++ < curYear + 6) { html+= '<option'; if (x == from_year) { @@ -183,7 +183,7 @@ if ($vars['title'] == "Edit profile") { var selTo = document.createElement("select"); selTo.name = "form_data_profile_attended_to"; x = 1940; - html = "<option>Did Not Attend UNL</option>"; + html = "<option></option><option>Did Not Attend UNL</option>"; while (x++ < curYear + 6) { html+= '<option'; if (x == to_year) { -- GitLab