summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-01-11 22:54:46 +0000
committerZach Copley <zach@status.net>2010-01-14 02:41:06 +0000
commit28329bd2b3e5c9b52ba79d9d29256192ed2ca208 (patch)
tree155d1482d6e17cf222fbada692369d4aa49611f0 /actions
parentc6bdbd478b27beae8346f12207e1c3550441df4a (diff)
Updated markup for application registration and view links
Diffstat (limited to 'actions')
-rw-r--r--actions/apps.php7
-rw-r--r--actions/showapplication.php8
2 files changed, 9 insertions, 6 deletions
diff --git a/actions/apps.php b/actions/apps.php
index e6500599f..7c7b24570 100644
--- a/actions/apps.php
+++ b/actions/apps.php
@@ -114,13 +114,16 @@ class AppsAction extends SettingsAction
}
}
+ $this->elementStart('p', array('id' => 'application_register'));
$this->element('a',
array('href' => common_local_url(
'newapplication',
array('nickname' => $user->nickname)
- )
+ ),
+ 'class' => 'more'
),
- 'Register a new application ยป');
+ 'Register a new application');
+ $this->elementEnd('p');
$this->pagination(
$this->page > 1,
diff --git a/actions/showapplication.php b/actions/showapplication.php
index 5156fa6f0..3e191148a 100644
--- a/actions/showapplication.php
+++ b/actions/showapplication.php
@@ -249,16 +249,16 @@ class ShowApplicationAction extends OwnerDesignAction
$this->elementEnd('div');
- $this->elementStart('div', 'entity-list-apps');
+ $this->elementStart('p', array('id' => 'application_action'));
$this->element('a',
array(
'href' => common_local_url(
'apps',
- array('nickname' => $this->owner->nickname)
- )
+ array('nickname' => $this->owner->nickname)),
+ 'class' => 'more'
),
'View your applications');
- $this->elementEnd('div');
+ $this->elementEnd('p');
}
function resetKey()