clean up the awful descriptive text on thing input

This commit is contained in:
friendica
2014-06-23 17:05:03 -07:00
parent 181623030b
commit b2feb26492
2 changed files with 7 additions and 4 deletions

View File

@@ -266,7 +266,7 @@ function obj_verb_selector($current = '') {
$o .= '<select class="obj-verb-selector" name="verb" >';
foreach($verbs as $k => $v) {
$selected = (($k == $current) ? ' selected="selected" ' : '');
$o .= '<option value="' . urlencode($k) . '"' . $selected . '>' . $v[0] . '</option>';
$o .= '<option value="' . urlencode($k) . '"' . $selected . '>' . $v[1] . '</option>';
}
$o .= '</select>';
return $o;