Skip to content
Snippets Groups Projects
Commit 012de4c8 authored by Seth Meranda's avatar Seth Meranda
Browse files

added a blank option for years attended.

parent e6899c50
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
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