diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-21 18:59:02 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-21 18:59:02 +0000 |
commit | b94f2716cfc4d1e91304a5fbf7783486932fa8c1 (patch) | |
tree | eec1247c3005598869732c7db68c0db316c66035 /includes/form.inc | |
parent | 7c31bcdeac94c254130845c3959753b68c36ea1e (diff) | |
download | brdo-b94f2716cfc4d1e91304a5fbf7783486932fa8c1.tar.gz brdo-b94f2716cfc4d1e91304a5fbf7783486932fa8c1.tar.bz2 |
#184867 by deekayen, catch and keith.smith: fix some spelling errors in our source code and messages printed
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/form.inc b/includes/form.inc index 9c1062ef4..a6cf31996 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1847,7 +1847,7 @@ function theme_form($element) { function theme_textarea($element) { $class = array('form-textarea'); - // Add teaser behaviour (must come before resizable) + // Add teaser behavior (must come before resizable) if (!empty($element['#teaser'])) { drupal_add_js('misc/teaser.js'); // Note: arrays are merged in drupal_get_js(). @@ -1856,7 +1856,7 @@ function theme_textarea($element) { $class[] = 'teaser'; } - // Add resizable behaviour + // Add resizable behavior if ($element['#resizable'] !== FALSE) { drupal_add_js('misc/textarea.js'); $class[] = 'resizable'; |