forked from GNUsocial/gnu-social
Merge branch 'uiredesign' of ../evan into uiredesign
This commit is contained in:
commit
e847b9a128
@ -194,11 +194,11 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
function showBody()
|
function showBody()
|
||||||
{
|
{
|
||||||
$this->elementStart('body');
|
$this->elementStart('body');
|
||||||
$this->elementStart('wrap');
|
$this->elementStart('div', 'wrap');
|
||||||
$this->showHeader();
|
$this->showHeader();
|
||||||
$this->showCore();
|
$this->showCore();
|
||||||
$this->showFooter();
|
$this->showFooter();
|
||||||
$this->elementEnd('wrap');
|
$this->elementEnd('div', 'wrap');
|
||||||
$this->elementEnd('body');
|
$this->elementEnd('body');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -576,7 +576,7 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
// Added @id to li for some control.
|
// Added @id to li for some control.
|
||||||
// XXX: We might want to move this to htmloutputter.php
|
// XXX: We might want to move this to htmloutputter.php
|
||||||
|
|
||||||
function menuItem($url, $text, $id=null, $title=null, $is_selected=false)
|
function menuItem($url, $text, $title=null, $is_selected=false, $id=null)
|
||||||
{
|
{
|
||||||
$lattrs = array();
|
$lattrs = array();
|
||||||
if ($is_selected) {
|
if ($is_selected) {
|
||||||
|
@ -342,7 +342,7 @@ class NoticeListItem extends Widget
|
|||||||
$this->out->elementStart('dl', 'timestamp');
|
$this->out->elementStart('dl', 'timestamp');
|
||||||
$this->out->element('dt', _('Published'));
|
$this->out->element('dt', _('Published'));
|
||||||
$this->out->elementStart('dd', null);
|
$this->out->elementStart('dd', null);
|
||||||
$this->out->element('a', array('rel' => 'bookmark',
|
$this->out->elementStart('a', array('rel' => 'bookmark',
|
||||||
'href' => $noticeurl));
|
'href' => $noticeurl));
|
||||||
$dt = common_date_iso8601($this->notice->created);
|
$dt = common_date_iso8601($this->notice->created);
|
||||||
$this->out->element('abbr', array('class' => 'published',
|
$this->out->element('abbr', array('class' => 'published',
|
||||||
|
Loading…
Reference in New Issue
Block a user