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

Added an option to the form for "Did not Attend UNL"

parent b035c1c4
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 = "";
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) {
......
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