diff --git a/sites/all/modules/unl/unl_loader.php b/sites/all/modules/unl/unl_loader.php
index d4e4917b45fe4953d0f1d7337ea99123847b868b..f2fbea904fdd28bb96b8dc8e9af7c1f472c07fa5 100644
--- a/sites/all/modules/unl/unl_loader.php
+++ b/sites/all/modules/unl/unl_loader.php
@@ -1,16 +1,15 @@
 <?php
 
-function unl_load_zend_framework()
-{
-	static $isLoaded = FALSE;
-	
-	if ($isLoaded) {
-		return;
-	}
-	
-	set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../../libraries' );
-    require_once 'Zend/Loader/Autoloader.php';
-    $autoloader = Zend_Loader_Autoloader::getInstance();
-    $autoloader->registerNamespace('Unl_');
-    $isLoaded = TRUE;
+function unl_load_zend_framework() {
+  static $isLoaded = FALSE;
+  
+  if ($isLoaded) {
+    return;
+  }
+  
+  set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../../libraries');
+  require_once 'Zend/Loader/Autoloader.php';
+  $autoloader = Zend_Loader_Autoloader::getInstance();
+  $autoloader->registerNamespace('Unl_');
+  $isLoaded = TRUE;
 }