diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/node/content_types.inc | 2 | ||||
-rw-r--r-- | modules/node/node.module | 4 | ||||
-rw-r--r-- | modules/system/system.install | 4 | ||||
-rw-r--r-- | modules/system/system.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index b2ba37818..916426ecd 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -67,7 +67,7 @@ function node_type_form($type = NULL) { $type->locked = FALSE; } - $form['#node_type'] = $type; // Make the type object availabe to implementations of hook_form_alter. + $form['#node_type'] = $type; // Make the type object available to implementations of hook_form_alter. $form['identity'] = array( '#type' => 'fieldset', diff --git a/modules/node/node.module b/modules/node/node.module index 655c90aa2..ec3476146 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1383,7 +1383,7 @@ function theme_node_filter_form($form) { } /** - * Theme node administraton filter selector. + * Theme node administration filter selector. */ function theme_node_filters($form) { $output .= '<ul class="clear-block">'; @@ -1992,7 +1992,7 @@ function node_form($node, $form_values = NULL) { $form['options']['promote'] = array('#type' => 'checkbox', '#title' => t('Promoted to front page'), '#default_value' => $node->promote); $form['options']['sticky'] = array('#type' => 'checkbox', '#title' => t('Sticky at top of lists'), '#default_value' => $node->sticky); $form['options']['revision'] = array('#type' => 'checkbox', '#title' => t('Create new revision'), '#default_value' => $node->revision); - // These values are used when the user has no administrator accesss. + // These values are used when the user has no administrator access. foreach (array('uid', 'created') as $key) { $form[$key] = array('#type' => 'value', '#value' => $node->$key); } diff --git a/modules/system/system.install b/modules/system/system.install index 23867ce73..dc4f33434 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1773,7 +1773,7 @@ function system_update_145() { $ret[] = update_sql("UPDATE {blocks} SET region = 'right' WHERE region = '1'"); db_query("UPDATE {blocks} SET theme = '%s'", $default_theme); - // Initialze block data for other enabled themes. + // Initialize block data for other enabled themes. $themes = list_themes(); foreach (array_keys($themes) as $theme) { if (($theme != $default_theme) && $themes[$theme]->status == 1) { @@ -3202,7 +3202,7 @@ function system_update_1005() { 'type' => 'story', 'name' => t('Story'), 'module' => 'node', - 'description' => t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extendd by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'), + 'description' => t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'), 'custom' => TRUE, 'modified' => TRUE, 'locked' => FALSE, diff --git a/modules/system/system.module b/modules/system/system.module index f13b2d7e8..0810be0d4 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1422,7 +1422,7 @@ function system_modules_submit($form_id, $form_values) { $new_modules = array(); // Merge in disabled active modules since they should be enabled. - // They don't appear because disabled checkboxes are not submited + // They don't appear because disabled checkboxes are not submitted // by browsers. $form_values['status'] = array_merge($form_values['status'], $form_values['disabled_modules']); diff --git a/modules/user/user.module b/modules/user/user.module index 30abd234f..c08869e36 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2567,7 +2567,7 @@ function theme_user_filter_form($form) { } /** - * Theme user administraton filter selector. + * Theme user administration filter selector. */ function theme_user_filters($form) { $output = '<ul class="clear-block">'; |