web: remove "mobile" from host venue select

This commit is contained in:
David Anderson 2014-02-08 15:38:11 -08:00
parent 403afa465c
commit 6ff59eae06
1 changed files with 0 additions and 2 deletions

View File

@ -48,7 +48,6 @@ function location_form($host) {
if ($host->venue == "home") $h = "selected";
if ($host->venue == "work") $w = "selected";
if ($host->venue == "school") $s = "selected";
if ($host->venue == "mobile") $m = "selected";
$x = "<form action=host_venue_action.php>
<input type=hidden name=hostid value=$host->id>
<select name=venue>
@ -56,7 +55,6 @@ function location_form($host) {
<option value=home $h>".tra("Home")."
<option value=work $w>".tra("Work")."
<option value=school $s>".tra("School")."
<option value=mobile $m>".tra("Mobile")."
</select>
<input type=submit value=".tra("Update").">
</form>