forgot commas!

darcs-hash:20080528173231-84dde-0fb59cf9ea19f025a2c840b44cf8d337c00231a3.gz
This commit is contained in:
Evan Prodromou 2008-05-28 13:32:31 -04:00
parent dc37b88e54
commit 0a60c577de
1 changed files with 4 additions and 4 deletions

View File

@ -286,8 +286,8 @@ class ShowstreamAction extends StreamAction {
common_element_start('span', 'floatLeft width25');
common_element('a', array('href' => common_local_url('showstream',
array('nickname' => $profile->nickname,
'page' => $page-1))
'class' => 'newer')
'page' => $page-1)),
'class' => 'newer'),
_t('Newer'));
common_element_end('span');
}
@ -296,8 +296,8 @@ class ShowstreamAction extends StreamAction {
common_element_start('span', 'floatRight width25');
common_element('a', array('href' => common_local_url('showstream',
array('nickname' => $profile->nickname,
'page' => $page+1))
'class' => 'older')
'page' => $page+1)),
'class' => 'older'),
_t('Older'));
common_element_end('span');
}