diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-06 06:39:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-06 06:39:01 +0000 |
commit | aec10a8c7df942ce53b656ae6494c1e08ee6ea17 (patch) | |
tree | e96248c534ecc33b51d88873c3dcbb8293fa47b1 /includes | |
parent | fe04b8f5a1c5e13b1f2f5e0b2ac8bb7f419ec311 (diff) | |
download | brdo-aec10a8c7df942ce53b656ae6494c1e08ee6ea17.tar.gz brdo-aec10a8c7df942ce53b656ae6494c1e08ee6ea17.tar.bz2 |
- Patch #734146 by scor: white-space clean-up.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 4 | ||||
-rw-r--r-- | includes/database/pgsql/schema.inc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index b90618198..3d03d5cce 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3014,7 +3014,7 @@ function drupal_pre_render_styles($elements) { // IE's limit of 31 total CSS inclusion tags. // - The group contains items not eligible for aggregation (their // 'preprocess' flag has been set to FALSE): in this case, output a LINK - // tag for each file. + // tag for each file. case 'file': // The group has been aggregated into a single file: output a LINK tag // for the aggregate file. @@ -4634,7 +4634,7 @@ function drupal_set_page_content($content = NULL) { * containing an expression for Internet Explorer to evaluate as part of a * conditional comment. For example, this can be set to 'lt IE 7' for the * element to be rendered in Internet Explorer 6, but not in Internet - * Explorer 7 or higher. Defaults to TRUE. + * Explorer 7 or higher. Defaults to TRUE. * - '!IE': If FALSE, the element is not rendered by browsers other than * Internet Explorer. If TRUE, the element is rendered by those browsers. * Defaults to TRUE. diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc index 679efbde8..1306bbd3a 100644 --- a/includes/database/pgsql/schema.inc +++ b/includes/database/pgsql/schema.inc @@ -346,7 +346,7 @@ class DatabaseSchema_pgsql extends DatabaseSchema { if (!$this->columnExists($table, $field)) { return FALSE; } - + $this->connection->query('ALTER TABLE {' . $table . '} DROP COLUMN "' . $field . '"'); return TRUE; } |