} 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');
}
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.'));
}
}
} 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');
}
}
function show_top($profile) {
- common_element('p', 'instructions',
+ common_element('div', 'instructions',
$this->get_instructions($profile));
}
# 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.'));