diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 13:04:30 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 13:04:30 -0400 |
commit | 1a15570339fa7ae5e33a98a7fe6a8645e3d3af72 (patch) | |
tree | 35186933a00591273ec7e13f1e2fdb743b5729ed /actions/subscribed.php | |
parent | 3617ede805a6f271c1f01cde60ed014e813a7013 (diff) |
common_start_element -> common_element_start
darcs-hash:20080517170430-84dde-74f42b52695699f646b65b939f78fbbe95a05c7e.gz
Diffstat (limited to 'actions/subscribed.php')
-rw-r--r-- | actions/subscribed.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/actions/subscribed.php b/actions/subscribed.php index d28ff237d..8e0b2bc6b 100644 --- a/actions/subscribed.php +++ b/actions/subscribed.php @@ -50,17 +50,17 @@ class SubscribedAction extends Action { $subs_count = $subs->find(); - common_start_element('div', 'subscriptions'); + common_element_start('div', 'subscriptions'); $idx = 0; while ($subs->fetch()) { $idx++; if ($idx % SUBSCRIPTIONS_PER_ROW == 1) { - common_start_element('div', 'row'); + common_element_start('div', 'row'); } - common_start_element('a', array('title' => $subs->fullname || + common_element_start('a', array('title' => $subs->fullname || $subs->nickname, 'href' => $subs->profileurl, 'class' => 'subscription')); @@ -69,12 +69,12 @@ class SubscribedAction extends Action { 'width' => AVATAR_STREAM_SIZE, 'height' => AVATAR_STREAM_SIZE, 'class' => 'avatar stream')); - common_end_element('a'); + common_element_end('a'); # XXX: subscribe form here if ($idx % SUBSCRIPTIONS_PER_ROW == 0) { - common_end_element('div'); + common_element_end('div'); } if ($idx == SUBSCRIPTIONS_PER_PAGE) { @@ -99,6 +99,6 @@ class SubscribedAction extends Action { 'class' => 'next'), _t('Next')); } - common_end_element('div'); + common_element_end('div'); } }
\ No newline at end of file |