]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
p.instructions -> div.instructions
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 00:22:42 +0000 (20:22 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 00:22:42 +0000 (20:22 -0400)
darcs-hash:20080709002242-84dde-1d7a2107079ab5d84592d280a19a253663f84b4f.gz

actions/login.php
actions/register.php
actions/remotesubscribe.php
lib/gallery.php
lib/openid.php

index 93661973287bc5ef74e8f7d8240a3de1e55afb3f..5943464f7f64c49508be49413f468055e61deb4b 100644 (file)
@@ -96,7 +96,7 @@ class LoginAction extends Action {
                } else {
                        $instr = $this->get_instructions();
                        $output = common_markup_to_html($instr);
-                       common_element_start('p', 'instructions');
+                       common_element_start('div', 'instructions');
                        common_raw($output);
                        common_element_end('p');
                }
index a8b360f730c5510492fc5b7ed87526b2c90924b1..3d34de2eb526663774b9d371c421a145817116f4 100644 (file)
@@ -155,7 +155,7 @@ class RegisterAction extends Action {
                if ($error) {
                        common_element('p', 'error', $error);
                } else {
-                       common_element('p', 'instructions',
+                       common_element('div', 'instructions',
                                                   _t('You can create a new account to start posting notices.'));
                }
        }
index 2bcf4e53b5ca73c98f1c2e985f935ca100c3ed96..ce8b4057b21ddd12acaac629b3c1674d0ba1437f 100644 (file)
@@ -53,7 +53,7 @@ class RemotesubscribeAction extends Action {
                } else {
                        $instructions = $this->get_instructions();
                        $output = common_markup_to_html($instructions);
-                       common_element_start('p', 'instructions');
+                       common_element_start('div', 'instructions');
                        common_raw($output);
                        common_element_end('p');
                }
index c6a4956f882b2e0296e712752c5e93a9391ea1d0..22488b3fd1317dcba3bb58c395944e16a48d28b1 100644 (file)
@@ -54,7 +54,7 @@ class GalleryAction extends Action {
        }
        
        function show_top($profile) {
-               common_element('p', 'instructions',
+               common_element('div', 'instructions',
                                           $this->get_instructions($profile));
        }
        
index 11934138fd463d49735897cff3c3ac31c8c6318a..5ad744fa13a8b9fedb445dc1ee312a3e7bab5bd7 100644 (file)
@@ -191,7 +191,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false) {
 # Half-assed attempt at a module-private function
 
 function _oid_print_instructions() {
-       common_element('p', 'instructions',
+       common_element('div', 'instructions',
                                   _t('This form should automatically submit itself. '.
                                          'If not, click the submit button to go to your '.
                                          'OpenID provider.'));