summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/login.php2
-rw-r--r--actions/register.php2
-rw-r--r--actions/remotesubscribe.php2
3 files changed, 3 insertions, 3 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');
}