- Removing stray whitspaces.

5.x
Dries Buytaert 2006-09-07 08:05:31 +00:00
parent 7c447cc8a5
commit 4ea672bfd1
3 changed files with 3 additions and 3 deletions

View File

@ -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();

View File

@ -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));

View File

@ -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));