- Patch #782056 by aspilicious: removing every tab + trailing white space in core.
parent
01eb7bff73
commit
0b61ecfe3a
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
class DatabaseSchema_sqlite extends DatabaseSchema {
|
||||
|
||||
/**
|
||||
/**
|
||||
* Override DatabaseSchema::$defaultSchema
|
||||
*/
|
||||
protected $defaultSchema = 'main';
|
||||
|
|
|
@ -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']);
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<script>
|
||||
alert('SimpleTest PHP was executed!');
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
print 'SimpleTest PHP was executed!';
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue