From 806d0a3dee25333558bb0a888c2a51c33f0723cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Thu, 5 Jul 2007 08:48:58 +0000 Subject: #156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes --- includes/database.pgsql.inc | 4 ++-- includes/menu.inc | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'includes') 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']; diff --git a/includes/menu.inc b/includes/menu.inc index 0bf4a81e3..b77c45d18 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -1121,16 +1121,16 @@ function menu_tab_root_path() { * @ingroup themeable */ function theme_menu_local_tasks() { - $output = ''; + $output = ''; - if ($primary = menu_primary_local_tasks()) { - $output .= "\n"; - } - if ($secondary = menu_secondary_local_tasks()) { - $output .= "\n"; - } + if ($primary = menu_primary_local_tasks()) { + $output .= "\n"; + } + if ($secondary = menu_secondary_local_tasks()) { + $output .= "\n"; + } - return $output; + return $output; } /** -- cgit v1.2.3