summaryrefslogtreecommitdiff
path: root/dash/settings.php
diff options
context:
space:
mode:
authorcflem <carson.fl3ming@gmail.com>2016-12-30 23:51:14 -0700
committercflem <carson.fl3ming@gmail.com>2016-12-30 23:51:14 -0700
commit249a05f91e9a5e6f553a1ba1fcfe6080bb841179 (patch)
treee119157d6fc856be0498c1bf9abf8b80f0f0f501 /dash/settings.php
parent8135babf7073bf1174c19645d42a163fb7c20823 (diff)
downloadbulletin-249a05f91e9a5e6f553a1ba1fcfe6080bb841179.tar.gz
Fixed non-operational short tags
Diffstat (limited to 'dash/settings.php')
-rw-r--r--dash/settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/dash/settings.php b/dash/settings.php
index 6c9c276..3f27cca 100644
--- a/dash/settings.php
+++ b/dash/settings.php
@@ -29,8 +29,8 @@ require('header.php');
<h4>Change Account Type</h4>
<p>
<select id="inpnt" name="newtype">
- <option<? if ($b_user['type'] == 'EMPLOYEE') echo ' selected="selected"'; ?> value="0">Job Seeker</option>
- <option<? if ($b_user['type'] == 'EMPLOYER') echo ' selected="selected"'; ?> value="1">Job Provider</option>
+ <option<?php if ($b_user['type'] == 'EMPLOYEE') echo ' selected="selected"'; ?> value="0">Job Seeker</option>
+ <option<?php if ($b_user['type'] == 'EMPLOYER') echo ' selected="selected"'; ?> value="1">Job Provider</option>
</select>
</p>
<p><input id="inpct" type="submit" name="changetype" value="Change Account Type" /></p>