summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-19 08:54:41 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-19 08:54:41 +0000
commite84a98a22b5cd6394f3c33970114b3a960c11f05 (patch)
tree4afd5d53ff66b465bfdce4fd48a4ca7ed8b95d42 /modules/node.module
parentecd26ac8ae495d785a78f34e3e4170904be7f023 (diff)
downloadbrdo-e84a98a22b5cd6394f3c33970114b3a960c11f05.tar.gz
brdo-e84a98a22b5cd6394f3c33970114b3a960c11f05.tar.bz2
- Patch #45349 by Morbus Iff: input filters aren't sorting correctly infForms API.
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/node.module b/modules/node.module
index 1fdd1e7e5..02e404375 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -1066,7 +1066,6 @@ function theme_node_filters(&$form) {
}
$output .= '</dd>';
-
$output .= '</dl>';
$output .= '<div class="container-inline" id="node-admin-buttons">'. form_render($form['buttons']) .'</div>';
$output .= '</li></ul><br class="clear" />';
@@ -1074,7 +1073,6 @@ function theme_node_filters(&$form) {
return $output;
}
-
function node_filter_form_submit() {
global $form_values;
$op = $_POST['op'];
@@ -1171,7 +1169,6 @@ function node_admin_nodes() {
return $output;
}
-
function theme_node_admin_nodes($form) {
// Overview table:
$header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), t('Operations'));
@@ -1221,7 +1218,6 @@ function node_multiple_delete_confirm() {
t('Delete all'), t('Cancel'));
}
-
function node_multiple_delete_confirm_submit($form_id, $edit) {
if ($edit['confirm']) {
foreach ($edit['nodes'] as $nid => $value) {
@@ -1568,7 +1564,6 @@ function node_validate($node) {
node_invoke_nodeapi($node, 'validate');
}
-
/**
* Validate the title of a node
*/
@@ -1665,7 +1660,6 @@ function node_form_array($node) {
$form['author']['name'] = array('#type' => 'textfield', '#title' => t('Authored by'), '#maxlength' => 60, '#autocomplete_path' => 'user/autocomplete', '#required' => TRUE, '#default_value' => $node->name ? $node->name : variable_get('anonymous', 'Anonymous'), '#weight' => -1);
$form['author']['date'] = array('#type' => 'textfield', '#title' => t('Authored on'), '#maxlength' => 25, '#required' => TRUE, '#default_value' => $node->date);
-
// Node options for administrators
$form['options'] = array('#type' => 'fieldset', '#title' => t('Publishing options'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => 25);
$form['options']['status'] = array('#type' => 'checkbox', '#title' => t('Published'), '#default_value' => $node->status);
@@ -1980,7 +1974,6 @@ function node_revisions() {
drupal_not_found();
}
-
/**
* Generate a listing of promoted nodes.
*/