From c8ab0a656babf1bf1cc3ddb8e2dfbce5737f8638 Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Mon, 23 Feb 2015 12:53:31 -0500 Subject: [PATCH] CRM-13584: code style fix, and isset() fix. --- CRM/Core/Config.php | 1 + install/index.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CRM/Core/Config.php b/CRM/Core/Config.php index b942661615..17ea00eece 100644 --- a/CRM/Core/Config.php +++ b/CRM/Core/Config.php @@ -889,4 +889,5 @@ AND public function free() { self::$_singleton = NULL; } + } diff --git a/install/index.php b/install/index.php index a869383a7e..f710097993 100644 --- a/install/index.php +++ b/install/index.php @@ -153,7 +153,7 @@ $installTypeToUF = array( 'drupal' => 'Drupal', ); -$uf = (! isset($installTypeToUF[$installType]) ? $installTypeToUF[$installType] : 'Drupal'); +$uf = (isset($installTypeToUF[$installType]) ? $installTypeToUF[$installType] : 'Drupal'); define('CIVICRM_UF', $uf); global $tsLocale; -- 2.25.1