]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Updated markup for application registration and view links
authorSarven Capadisli <csarven@status.net>
Mon, 11 Jan 2010 22:54:46 +0000 (22:54 +0000)
committerZach Copley <zach@status.net>
Mon, 25 Jan 2010 00:36:03 +0000 (16:36 -0800)
actions/apps.php
actions/showapplication.php

index e6500599f73786bd7ecd0fdb53d0da28698a4783..7c7b24570f78393e9f179cd3754aa5b22cd7bae9 100644 (file)
@@ -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,
index 5156fa6f0ca0890faa384889fd303a9de57d266c..3e191148aeca0f99b5c5b4093141b2ff55ac1c9f 100644 (file)
@@ -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()