aboutsummaryrefslogtreecommitdiffstats
path: root/mod/manage.php
diff options
context:
space:
mode:
authorHauke Zuehl <hzuehl@phone-talk.de>2012-06-16 18:04:59 +0200
committerHauke Zuehl <hzuehl@phone-talk.de>2012-06-16 18:04:59 +0200
commitf9a40ccbdea69fc7ffcbdc87356d535c67371210 (patch)
tree18eca4019eb8e64badb7035ab782b729b706cd64 /mod/manage.php
parent1231dd72f02fdec59b78ed9a6408887c2ae0b8d4 (diff)
parent4faf0e609fe03095069c7a4bcdfc3496e4a28627 (diff)
downloadvolse-hubzilla-f9a40ccbdea69fc7ffcbdc87356d535c67371210.tar.gz
volse-hubzilla-f9a40ccbdea69fc7ffcbdc87356d535c67371210.tar.bz2
volse-hubzilla-f9a40ccbdea69fc7ffcbdc87356d535c67371210.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'mod/manage.php')
-rw-r--r--mod/manage.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/manage.php b/mod/manage.php
index 84dfa6917..96d420c78 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -96,7 +96,7 @@ function manage_content(&$a) {
$o .= '<div id="identity-selector-wrapper">' . "\r\n";
$o .= '<form action="manage" method="post" >' . "\r\n";
- $o .= '<select name="identity" size="4">' . "\r\n";
+ $o .= '<select name="identity" size="4" onchange="this.form.submit();" >' . "\r\n";
foreach($a->identities as $rr) {
$selected = (($rr['nickname'] === $a->user['nickname']) ? ' selected="selected" ' : '');
@@ -106,7 +106,8 @@ function manage_content(&$a) {
$o .= '</select>' . "\r\n";
$o .= '<div id="identity-select-break"></div>' . "\r\n";
- $o .= '<input id="identity-submit" type="submit" name="submit" value="' . t('Submit') . '" /></div></form>' . "\r\n";
+// $o .= '<input id="identity-submit" type="submit" name="submit" value="' . t('Submit') . '" />';
+ $o .= '</div></form>' . "\r\n";
return $o;