- Patch #782056 by aspilicious: removing every tab + trailing white space in core.

merge-requests/26/head
Dries Buytaert 2010-04-28 20:25:22 +00:00
parent 01eb7bff73
commit 0b61ecfe3a
14 changed files with 22 additions and 22 deletions

View File

@ -168,7 +168,7 @@
* $commands[] = ajax_command_changed('#object-1');
* // Menu 'page callback' and #ajax['callback'] functions are supposed to
* // return render arrays. If returning an AJAX commands array, it must be
* // encapsulated in a render array structure.
* // encapsulated in a render array structure.
* return array('#type' => 'ajax', '#commands' => $commands);
* @endcode
*

View File

@ -1464,7 +1464,7 @@ function check_plain($text) {
// drupal_validate_utf8() here. This avoids the overhead of an additional
// function call, since check_plain() may be called hundreds of times during
// a request. For PHP 5.2.5+, this check for valid UTF-8 should be handled
// internally by PHP in htmlspecialchars().
// internally by PHP in htmlspecialchars().
// See http://www.php.net/releases/5_2_5.php.
// @todo remove this when support for either IE6 or PHP < 5.2.5 is dropped.

View File

@ -4848,7 +4848,7 @@ function drupal_render_page($page) {
* using uasort(). Since this is expensive, when passing already sorted
* elements to drupal_render(), for example from a database query, set
* $elements['#sorted'] = TRUE to avoid sorting them a second time.
*
*
* drupal_render() flags each element with a '#printed' status to indicate that
* the element has been rendered, which allows individual elements of a given
* array to be rendered independently and prevents them from being rendered

View File

@ -175,7 +175,7 @@ class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface
// as soon as possible.
$this->rowCount = $statement->rowCount();
$this->data = $statement->fetchAll(PDO::FETCH_ASSOC);
// Destroy the statement as soon as possible. See
// Destroy the statement as soon as possible. See
// DatabaseConnection_sqlite::PDOPrepare() for explanation.
unset($statement);

View File

@ -604,9 +604,9 @@ abstract class DatabaseSchema implements QueryPlaceholderInterface {
if ($this->tableExists($name)) {
throw new DatabaseSchemaObjectExistsException(t('Table %name already exists.', array('%name' => $name)));
}
$statements = $this->createTableSql($name, $table);
$statements = $this->createTableSql($name, $table);
foreach ($statements as $statement) {
$this->connection->query($statement);
$this->connection->query($statement);
}
}

View File

@ -14,7 +14,7 @@
class DatabaseSchema_sqlite extends DatabaseSchema {
/**
/**
* Override DatabaseSchema::$defaultSchema
*/
protected $defaultSchema = 'main';

View File

@ -683,7 +683,7 @@ function _locale_import_one_string($op, $value = NULL, $mode = NULL, $lang = NUL
$languages = language_list();
if (($mode != LOCALE_IMPORT_KEEP) || empty($languages[$lang]->plurals)) {
// Since we only need to parse the header if we ought to update the
// plural formula, only run this if we don't need to keep existing
// plural formula, only run this if we don't need to keep existing
// data untouched or if we don't have an existing plural formula.
$header = _locale_import_parse_header($value['msgstr']);

View File

@ -223,11 +223,11 @@ function update_fix_d7_block_deltas(&$sandbox, $renamed_deltas) {
))
->fetchField();
if ($block_exists) {
db_update($table)
->fields(array('delta' => $new_delta))
->condition('module', $module)
->condition('delta', $old_delta)
->execute();
db_update($table)
->fields(array('delta' => $new_delta))
->condition('module', $module)
->condition('delta', $old_delta)
->execute();
}
}
}

View File

@ -129,7 +129,7 @@ Drupal.verticalTab.prototype = {
* Updates the tab's summary.
*/
updateSummary: function () {
this.summary.html(this.fieldset.drupalGetSummary());
this.summary.html(this.fieldset.drupalGetSummary());
},
/**

View File

@ -2,14 +2,14 @@
(function ($) {
Drupal.color = {
callback: function(context, settings, form, farb, height, width) {
callback: function(context, settings, form, farb, height, width) {
// Solid background.
$('#preview', form).css('backgroundColor', $('#palette input[name="palette[base]"]', form).val());
// Text preview
$('#text', form).css('color', $('#palette input[name="palette[text]"]', form).val());
$('#text a, #text h2', form).css('color', $('#palette input[name="palette[link]"]', form).val());
// Set up gradients if there are some.
var color_start, color_end;
for (i in settings.gradients) {
@ -32,4 +32,4 @@
}
}
};
})(jQuery);
})(jQuery);

View File

@ -7,7 +7,7 @@
*
* Available variables:
* - $header: The table header. This is pre-generated with click-sorting
* information. If you need to change this, see
* information. If you need to change this, see
* template_preprocess_forum_topic_list().
* - $pager: The pager to display beneath the table.
* - $topics: An array of topics to be displayed.

View File

@ -2,4 +2,4 @@ $Id$
These files are use in some tests that upload files or other operations were
a file is useful. These files are copied to the files directory as specified
in the site settings. Other tests files are generated in order to save space.
in the site settings. Other tests files are generated in order to save space.

View File

@ -1,3 +1,3 @@
<script>
alert('SimpleTest PHP was executed!');
</script>
</script>

View File

@ -1,3 +1,3 @@
<?php
print 'SimpleTest PHP was executed!';
?>
?>