fixed subscriptions dropdown action

This commit is contained in:
Robin Millette 2009-04-24 20:28:39 +00:00
parent f2f4e8c586
commit d71fbe9d96
1 changed files with 3 additions and 1 deletions

View File

@ -134,9 +134,11 @@ class GalleryAction extends Action
$this->elementStart('li', array('id'=>'filter_tags_item'));
$this->elementStart('form', array('name' => 'bytag',
'id' => 'bytag',
'action' => common_path('?action=' . $this->trimmed('action')),
'method' => 'post'));
$this->dropdown('tag', _('Tag'), $content,
_('Choose a tag to narrow list'), false, $tag);
$this->hidden('nickname', $this->user->nickname);
$this->submit('submit', _('Go'));
$this->elementEnd('form');
$this->elementEnd('li');
@ -169,4 +171,4 @@ class GalleryAction extends Action
{
return array();
}
}
}