forked from GNUsocial/gnu-social
Merge branch '0.9.x' into minifyjs
This commit is contained in:
commit
11805c97d6
@ -300,9 +300,11 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
* events and appending to the array. Try to avoid adding strings that won't be used, as
|
* events and appending to the array. Try to avoid adding strings that won't be used, as
|
||||||
* they'll be added to HTML output.
|
* they'll be added to HTML output.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function showScriptMessages()
|
function showScriptMessages()
|
||||||
{
|
{
|
||||||
$messages = array();
|
$messages = array();
|
||||||
|
|
||||||
if (Event::handle('StartScriptMessages', array($this, &$messages))) {
|
if (Event::handle('StartScriptMessages', array($this, &$messages))) {
|
||||||
// Common messages needed for timeline views etc...
|
// Common messages needed for timeline views etc...
|
||||||
|
|
||||||
@ -310,11 +312,14 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more');
|
$messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more');
|
||||||
|
|
||||||
$messages = array_merge($messages, $this->getScriptMessages());
|
$messages = array_merge($messages, $this->getScriptMessages());
|
||||||
}
|
|
||||||
Event::handle('EndScriptMessages', array($this, &$messages));
|
Event::handle('EndScriptMessages', array($this, &$messages));
|
||||||
if ($messages) {
|
}
|
||||||
|
|
||||||
|
if (!empty($messages)) {
|
||||||
$this->inlineScript('SN.messages=' . json_encode($messages));
|
$this->inlineScript('SN.messages=' . json_encode($messages));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $messages;
|
return $messages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user