Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
This commit is contained in:
commit
4bad176088
@ -300,8 +300,8 @@ class ShowgroupAction extends GroupDesignAction
|
||||
$this->elementStart('div', 'entity_actions');
|
||||
$this->element('h2', null, _('Group actions'));
|
||||
$this->elementStart('ul');
|
||||
if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
|
||||
$this->elementStart('li', 'entity_subscribe');
|
||||
if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
|
||||
$cur = common_current_user();
|
||||
if ($cur) {
|
||||
if ($cur->isMember($this->group)) {
|
||||
@ -312,10 +312,9 @@ class ShowgroupAction extends GroupDesignAction
|
||||
$jf->show();
|
||||
}
|
||||
}
|
||||
$this->elementEnd('li');
|
||||
Event::handle('EndGroupSubscribe', array($this, $this->group));
|
||||
}
|
||||
|
||||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
$this->elementEnd('div');
|
||||
}
|
||||
|
@ -216,17 +216,14 @@ class OStatusPlugin extends Plugin
|
||||
|
||||
if (empty($cur)) {
|
||||
// Add an OStatus subscribe
|
||||
$output->elementStart('li', 'entity_subscribe');
|
||||
$url = common_local_url('ostatusinit',
|
||||
array('nickname' => $group->nickname));
|
||||
$output->element('a', array('href' => $url,
|
||||
'class' => 'entity_remote_subscribe'),
|
||||
_m('Join'));
|
||||
|
||||
$output->elementEnd('li');
|
||||
}
|
||||
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -228,43 +228,9 @@ class TwitterAdminPanelForm extends AdminForm
|
||||
$globalConsumerKey = common_config('twitter', 'global_consumer_key');
|
||||
$globalConsumerSec = common_config('twitter', 'global_consumer_secret');
|
||||
|
||||
if (!empty($globalConsumerKey)) {
|
||||
if (!empty($globalConsumerKey) && !empty($globalConsumerSec)) {
|
||||
$this->li();
|
||||
$this->out->element(
|
||||
'label',
|
||||
array('for' => 'global_consumer_key'),
|
||||
''
|
||||
);
|
||||
$this->out->element(
|
||||
'input',
|
||||
array(
|
||||
'name' => 'global_consumer_key',
|
||||
'type' => 'text',
|
||||
'id' => 'global_consumer_key',
|
||||
'value' => $globalConsumerKey,
|
||||
'disabled' => 'true'
|
||||
)
|
||||
);
|
||||
$this->out->element('p', 'form_guide', _('Global consumer key'));
|
||||
$this->unli();
|
||||
|
||||
$this->li();
|
||||
$this->out->element(
|
||||
'label',
|
||||
array('for' => 'global_consumer_secret'),
|
||||
''
|
||||
);
|
||||
$this->out->element(
|
||||
'input',
|
||||
array(
|
||||
'name' => 'global_consumer_secret',
|
||||
'type' => 'text',
|
||||
'id' => 'global_consumer_secret',
|
||||
'value' => $globalConsumerSec,
|
||||
'disabled' => 'true'
|
||||
)
|
||||
);
|
||||
$this->out->element('p', 'form_guide', _('Global consumer secret'));
|
||||
$this->out->element('p', 'form_guide', _('Note: a global consumer key and secret are set.'));
|
||||
$this->unli();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user