- Patch #12555 by svemir: fixed problem with the 'Preview comment' button not being present when previews are optional.

4.6.x
Dries Buytaert 2004-11-29 12:59:21 +00:00
parent e7ce1e3ccb
commit e35137a5ad
2 changed files with 4 additions and 8 deletions

View File

@ -1405,11 +1405,9 @@ function theme_comment_form($edit, $title) {
$form .= form_hidden('pid', $edit['pid']);
$form .= form_hidden('nid', $edit['nid']);
if (variable_get('comment_preview', 1)) {
$form .= form_submit(t('Preview comment'));
}
$form .= form_submit(t('Preview comment'));
if (!form_get_errors()) {
if (!variable_get('comment_preview', 1) || ($_POST['op'] == t('Preview comment') && !form_get_errors())) {
$form .= form_submit(t('Post comment'));
}

View File

@ -1405,11 +1405,9 @@ function theme_comment_form($edit, $title) {
$form .= form_hidden('pid', $edit['pid']);
$form .= form_hidden('nid', $edit['nid']);
if (variable_get('comment_preview', 1)) {
$form .= form_submit(t('Preview comment'));
}
$form .= form_submit(t('Preview comment'));
if (!form_get_errors()) {
if (!variable_get('comment_preview', 1) || ($_POST['op'] == t('Preview comment') && !form_get_errors())) {
$form .= form_submit(t('Post comment'));
}