aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-23 17:05:03 -0700
committerfriendica <info@friendica.com>2014-06-23 17:05:03 -0700
commitb2feb264928908677e4c2b8de4722a2dc93d5ffa (patch)
tree1cc3da6df64459cd27b2d97f2fc48f44f57804b3 /include
parent181623030ba0903431c4f3184f8abb1c4d639ec5 (diff)
downloadvolse-hubzilla-b2feb264928908677e4c2b8de4722a2dc93d5ffa.tar.gz
volse-hubzilla-b2feb264928908677e4c2b8de4722a2dc93d5ffa.tar.bz2
volse-hubzilla-b2feb264928908677e4c2b8de4722a2dc93d5ffa.zip
clean up the awful descriptive text on thing input
Diffstat (limited to 'include')
-rw-r--r--include/taxonomy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index 803e1ae0a..92003328f 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -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;