From 6ea59a32e18ad97ae03e719a30fbaad127e09b87 Mon Sep 17 00:00:00 2001 From: Seth Meranda <smeranda2@unl.edu> Date: Mon, 24 Aug 2009 16:31:59 +0000 Subject: [PATCH] Added an option to the form for "Did not Attend UNL" --- 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 77be2c51..7d4323dd 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 = ""; + html = "<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 = ""; + html = "<option>Did Not Attend UNL</option>"; while (x++ < curYear + 6) { html+= '<option'; if (x == to_year) { -- GitLab