summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-08 20:22:42 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-08 20:22:42 -0400
commitec9de70539083aad64deea2995cf9dfa9fb84b1a (patch)
treeb7c8989ca4f1f0c6ca3833ca37bc7dbe142bc78d
parent485314fe20cf09fa8d5b354f4d143b0f4b1e40a3 (diff)
p.instructions -> div.instructions
darcs-hash:20080709002242-84dde-1d7a2107079ab5d84592d280a19a253663f84b4f.gz
-rw-r--r--actions/login.php2
-rw-r--r--actions/register.php2
-rw-r--r--actions/remotesubscribe.php2
-rw-r--r--lib/gallery.php2
-rw-r--r--lib/openid.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/actions/login.php b/actions/login.php
index 936619732..5943464f7 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -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');
}
diff --git a/actions/register.php b/actions/register.php
index a8b360f73..3d34de2eb 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -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.'));
}
}
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php
index 2bcf4e53b..ce8b4057b 100644
--- a/actions/remotesubscribe.php
+++ b/actions/remotesubscribe.php
@@ -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');
}
diff --git a/lib/gallery.php b/lib/gallery.php
index c6a4956f8..22488b3fd 100644
--- a/lib/gallery.php
+++ b/lib/gallery.php
@@ -54,7 +54,7 @@ class GalleryAction extends Action {
}
function show_top($profile) {
- common_element('p', 'instructions',
+ common_element('div', 'instructions',
$this->get_instructions($profile));
}
diff --git a/lib/openid.php b/lib/openid.php
index 11934138f..5ad744fa1 100644
--- a/lib/openid.php
+++ b/lib/openid.php
@@ -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.'));