- Patch #35644 by webchick: fixed the sizes of the textareas on the node edit forms.
parent
86db338c64
commit
d4692d569c
|
@ -229,7 +229,7 @@ function blog_form(&$node) {
|
|||
}
|
||||
|
||||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE);
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
return $form;
|
||||
}
|
||||
|
|
|
@ -229,7 +229,7 @@ function blog_form(&$node) {
|
|||
}
|
||||
|
||||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE);
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
return $form;
|
||||
}
|
||||
|
|
|
@ -249,7 +249,7 @@ function book_form(&$node) {
|
|||
|
||||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -249,7 +249,7 @@ function book_form(&$node) {
|
|||
|
||||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -589,7 +589,7 @@ function forum_form(&$node) {
|
|||
$form['shadow'] = array('#type' => 'checkbox', '#title' => t('Leave shadow copy'), '#default_value' => $shadow, '#description' => t('If you move this topic, you can leave a link in the old forum to the new forum.'));
|
||||
}
|
||||
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -589,7 +589,7 @@ function forum_form(&$node) {
|
|||
$form['shadow'] = array('#type' => 'checkbox', '#title' => t('Leave shadow copy'), '#default_value' => $shadow, '#description' => t('If you move this topic, you can leave a link in the old forum to the new forum.'));
|
||||
}
|
||||
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
$form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -729,7 +729,7 @@ function node_search($op = 'search', $keys = null) {
|
|||
$form = array();
|
||||
|
||||
// Keyword boxes
|
||||
$form['advanced'] = array('#type' => 'fieldset', '#title' => t('Advanced search'), '#collapsible' => true, '#collapsed' => true, '#attributes' => array('class' => 'search-advanced'));
|
||||
$form['advanced'] = array('#type' => 'fieldset', '#title' => t('Advanced search'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#attributes' => array('class' => 'search-advanced'));
|
||||
|
||||
$form['advanced']['keywords'] = array('#type' => 'markup', '#prefix' => '<div class="criterium">', '#suffix' => '</div>');
|
||||
$form['advanced']['keywords']['or'] = array('#type' => 'textfield', '#title' => t('Containing any of the words'), '#size' => 30, '#maxlength' => 255);
|
||||
|
@ -1325,12 +1325,18 @@ function node_revision_rollback($nid, $revision) {
|
|||
* Delete the revision with specified revision number.
|
||||
*/
|
||||
function node_revision_delete($nid, $revision) {
|
||||
|
||||
if (user_access('administer nodes')) {
|
||||
$count_revisions = db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', $nid));
|
||||
// Don't delete the last revision of the node or the current revision
|
||||
if ($count_revisions > 1) {
|
||||
$node = node_load($nid, $revision);
|
||||
|
||||
db_query("DELETE FROM {node_revisions} WHERE nid = %d AND vid = %d", $nid, $revision);
|
||||
drupal_set_message(t('Deleted revision with the ID %revision.', array('%revision' => theme('placeholder', $revision))));
|
||||
|
||||
node_invoke_nodeapi($node, 'delete revision');
|
||||
drupal_set_message(t('Deleted %title revision %revision.', array('%title' => theme('placeholder', $node->title), '%revision' => theme('placeholder', $revision))));
|
||||
watchdog('content', t('%type: deleted %title revision %revision.', array('%type' => theme('placeholder', t($node->type)), '%title' => theme('placeholder', $node->title), '%revision' => theme('placeholder', $revision))));
|
||||
}
|
||||
else {
|
||||
drupal_set_message(t('Deletion failed. You tried to delete the current revision.'));
|
||||
|
|
|
@ -729,7 +729,7 @@ function node_search($op = 'search', $keys = null) {
|
|||
$form = array();
|
||||
|
||||
// Keyword boxes
|
||||
$form['advanced'] = array('#type' => 'fieldset', '#title' => t('Advanced search'), '#collapsible' => true, '#collapsed' => true, '#attributes' => array('class' => 'search-advanced'));
|
||||
$form['advanced'] = array('#type' => 'fieldset', '#title' => t('Advanced search'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#attributes' => array('class' => 'search-advanced'));
|
||||
|
||||
$form['advanced']['keywords'] = array('#type' => 'markup', '#prefix' => '<div class="criterium">', '#suffix' => '</div>');
|
||||
$form['advanced']['keywords']['or'] = array('#type' => 'textfield', '#title' => t('Containing any of the words'), '#size' => 30, '#maxlength' => 255);
|
||||
|
@ -1325,12 +1325,18 @@ function node_revision_rollback($nid, $revision) {
|
|||
* Delete the revision with specified revision number.
|
||||
*/
|
||||
function node_revision_delete($nid, $revision) {
|
||||
|
||||
if (user_access('administer nodes')) {
|
||||
$count_revisions = db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', $nid));
|
||||
// Don't delete the last revision of the node or the current revision
|
||||
if ($count_revisions > 1) {
|
||||
$node = node_load($nid, $revision);
|
||||
|
||||
db_query("DELETE FROM {node_revisions} WHERE nid = %d AND vid = %d", $nid, $revision);
|
||||
drupal_set_message(t('Deleted revision with the ID %revision.', array('%revision' => theme('placeholder', $revision))));
|
||||
|
||||
node_invoke_nodeapi($node, 'delete revision');
|
||||
drupal_set_message(t('Deleted %title revision %revision.', array('%title' => theme('placeholder', $node->title), '%revision' => theme('placeholder', $revision))));
|
||||
watchdog('content', t('%type: deleted %title revision %revision.', array('%type' => theme('placeholder', t($node->type)), '%title' => theme('placeholder', $node->title), '%revision' => theme('placeholder', $revision))));
|
||||
}
|
||||
else {
|
||||
drupal_set_message(t('Deletion failed. You tried to delete the current revision.'));
|
||||
|
|
|
@ -94,7 +94,7 @@ function page_form(&$node) {
|
|||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ function page_form(&$node) {
|
|||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ function story_form(&$node) {
|
|||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ function story_form(&$node) {
|
|||
$form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title);
|
||||
|
||||
$form['body'] = array(
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
|
||||
'#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
|
||||
);
|
||||
$form = array_merge($form, filter_form($node->format));
|
||||
|
||||
|
|
Loading…
Reference in New Issue