diff --git a/includes/common.inc b/includes/common.inc index 234c8d94e01fae704a357c0a23e4e37f8586d33f..ffe4b0574109d7c0ce4a98f611675f5a0d8a9ed0 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1372,7 +1372,7 @@ function drupal_add_js($data = NULL, $type = 'module', $scope = 'header', $defer /** * Helper function for drupal_add_js(). - */ + */ function _drupal_add_js($data, $type, $scope, $defer, $cache) { static $javascript = array(); diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc index 4f856a83b8621fc03c4536a8894fa99b9c05fc74..79f95331e1477210d002647fe579e3b73ec1ad38 100644 --- a/includes/database.mysql.inc +++ b/includes/database.mysql.inc @@ -25,7 +25,7 @@ function db_status_report($phase) { ); // Extract version number - list($version) = explode('-', $info); + list($version) = explode('-', $info); if (version_compare($version, DRUPAL_MINIMUM_MYSQL) < 0) { $form['mysql']['severity'] = REQUIREMENT_ERROR; $form['mysql']['description'] = $t('Your MySQL Server is too old. Drupal requires at least MySQL %version.', array('%version' => DRUPAL_MINIMUM_MYSQL)); diff --git a/misc/textarea.js b/misc/textarea.js index bf89329372569d5b7ab2f8557ac0993d946005a6..9a2a1658dcd47c2f9783233c682e7e217c113cb2 100644 --- a/misc/textarea.js +++ b/misc/textarea.js @@ -3,7 +3,7 @@ Drupal.textareaAttach = function() { $('textarea.resizable:not(.processed)').each(function() { var textarea = $(this).addClass('processed'), staticOffset = null; - + $(this).wrap('<div class="resizable-textarea"></div>') .parent().append($('<div class="grippie"></div>').mousedown(startDrag));