summaryrefslogtreecommitdiff
path: root/includes/database.pgsql.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-07-05 08:48:58 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-07-05 08:48:58 +0000
commit806d0a3dee25333558bb0a888c2a51c33f0723cd (patch)
tree4171b59abeb1607948721d86f5c76405c666491b /includes/database.pgsql.inc
parentb9c40a52370c2e7d8b3db078f869e02881435da9 (diff)
downloadbrdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.gz
brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.bz2
#156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes
Diffstat (limited to 'includes/database.pgsql.inc')
-rw-r--r--includes/database.pgsql.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc
index b29983c48..051e8ea69 100644
--- a/includes/database.pgsql.inc
+++ b/includes/database.pgsql.inc
@@ -45,7 +45,7 @@ function db_version() {
* Initialize a database connection.
*/
function db_connect($url) {
- // Check if MySQL support is present in PHP
+ // Check if MySQL support is present in PHP
if (!function_exists('pg_connect')) {
drupal_maintenance_theme();
drupal_set_title('PHP PostgreSQL support not enabled');
@@ -630,7 +630,7 @@ function _db_create_field_sql($name, $spec) {
}
if (isset($spec['not null']) && $spec['not null']) {
- $sql .= ' NOT NULL';
+ $sql .= ' NOT NULL';
}
if (isset($spec['default'])) {
$default = is_string($spec['default']) ? "'". $spec['default'] ."'" : $spec['default'];