Mark Scherer 10 years ago
parent
commit
dfa7b62a6b

+ 1 - 1
Config/configs.example.php

@@ -47,7 +47,7 @@ $config['Google'] = [
 	'lat' => 51,
 	'lng' => 11,
 	'type' => 'G_NORMAL_MAP',
- 	'static_size' => '500x500'
+	'static_size' => '500x500'
 ];
 
 $config['Config'] = [

+ 2 - 2
Test/Case/Model/Datasource/ImapSourceTest.php

@@ -42,13 +42,13 @@ class ImapSourceTest extends MyCakeTestCase {
 		//$this->assertEquals($expected, $result);
 		$this->debug($result);
 	}
-	
+
 	/**
 	 * @return void
 	 */
 	public function testMakeSearch() {
 		$this->skipIf(!function_exists('imap_open'), 'No imap_open() function available. Please install extension/module.');
-	
+
 		$query = [
 			'answered' => 1,
 			'seen' => true,

+ 1 - 1
Test/Case/View/Helper/MyHelperUrlCacheTest.php

@@ -176,7 +176,7 @@ class MyHelperUrlCacheTest extends CakeTestCase {
 		$url = $this->HtmlHelper->url($urlArray);
 		$this->assertEquals(['e8383c43f33fcf11621240f22814603b'], array_keys(UrlCacheManager::$cachePage));
 		$this->assertEquals('/posts/list_posts?page=2', $url);
-		
+
 		$this->HtmlHelper->afterLayout('foo');
 	}
 }

+ 2 - 2
View/Elements/Flash/default.ctp

@@ -1,10 +1,10 @@
 <?php
 $class = 'message';
 if (!empty($params['class'])) {
-    $class .= ' ' . $params['class'];
+	$class .= ' ' . $params['class'];
 }
 if (!empty($type)) {
-    $class .= ' ' . $type;
+	$class .= ' ' . $type;
 }
 
 if (!isset($escape) || $escape) {