summaryrefslogtreecommitdiff
path: root/dash/settings.php
diff options
context:
space:
mode:
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>