hack around address hack in util.js

This commit is contained in:
Evan Prodromou 2009-09-23 14:58:42 -04:00
parent 480eeb1b80
commit 36e009349d
1 changed files with 10 additions and 0 deletions

View File

@ -222,6 +222,16 @@ class RealtimePlugin extends Plugin
(common_current_user()) ? array('id' => $action->trimmed('action'),
'class' => 'user_in')
: array('id' => $action->trimmed('action')));
// XXX hack to deal with JS that tries to get the
// root url from page output
$action->elementStart('address');
$action->element('a', array('class' => 'url',
'href' => common_local_url('public')),
'');
$action->elementEnd('address');
if (common_logged_in()) {
$action->showNoticeForm();
}