CRM-13584: code style fix, and isset() fix.
authorMathieu Lutfy <mathieu@bidon.ca>
Mon, 23 Feb 2015 17:53:31 +0000 (12:53 -0500)
committerMathieu Lutfy <mathieu@bidon.ca>
Mon, 23 Feb 2015 17:53:31 +0000 (12:53 -0500)
CRM/Core/Config.php
install/index.php

index b94266161503cea958065b8c61393c4e32d6f4a2..17ea00eece55959a9b2dd98be10ca70648be21ab 100644 (file)
@@ -889,4 +889,5 @@ AND
   public function free() {
     self::$_singleton = NULL;
   }
+
 }
index a869383a7e6c55c334ef297530401df284c38d02..f710097993ee40e3042fb996bed2e96785a2f7e8 100644 (file)
@@ -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;