From 2b95ae1e6d2296ef81259e6762fb3e6662f3bc6c Mon Sep 17 00:00:00 2001
From: Bernhard Posselt <nukeawhale@gmail.com>
Date: Thu, 17 Jan 2013 21:44:40 +0100
Subject: [PATCH] spaces to tabs

---
 lib/base.php | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/lib/base.php b/lib/base.php
index 1d525f7e19..15308138a1 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -322,15 +322,15 @@ class OC
 	}
 
 
-        public static function loadAppClassPaths()
-        {
-                foreach(OC_APP::getEnabledApps() as $app) {
-                        $file = OC_App::getAppPath($app).'/appinfo/classpath.php';
-                        if(file_exists($file)) {
-                                require_once $file;
-                        }
-                }
-        }
+	public static function loadAppClassPaths()
+	{	
+		foreach(OC_APP::getEnabledApps() as $app) {
+			$file = OC_App::getAppPath($app).'/appinfo/classpath.php';
+			if(file_exists($file)) {
+				require_once $file;
+			}
+		}
+	}
 
 
 	public static function init()
@@ -550,9 +550,9 @@ class OC
 			return;
 		}
 
-                // load all the classpaths from the enabled apps so they are available
-                // in the routing files of each app
-                OC::loadAppClassPaths();
+		// load all the classpaths from the enabled apps so they are available
+		// in the routing files of each app
+		OC::loadAppClassPaths();
 
 		try {
 			OC::getRouter()->match(OC_Request::getPathInfo());
-- 
GitLab