Browse Source

Merge pull request #277 from neo22s/master

 temporary fix for #275
Chema 6 years ago
parent
commit
57d8c803da

+ 2 - 2
modules/auth/config/userguide.php

@@ -18,8 +18,8 @@ return [
 			'description' => 'User authentication and authorization.',
 
 			// Copyright message, shown in the footer for this module
-			'copyright' => '© 2008–2012 Kohana Team',
+			'copyright' => '© 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
 		]
 	]
-		
+		
 ];

+ 1 - 1
modules/cache/config/userguide.php

@@ -17,7 +17,7 @@ return [
 			'description' => 'Common interface for caching engines.',
 			
 			// Copyright message, shown in the footer for this module
-			'copyright' => '© 2008–2012 Kohana Team',
+			'copyright' => '© 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
 		]	
 	]
 ];

+ 1 - 1
modules/codebench/config/userguide.php

@@ -17,7 +17,7 @@ return [
 			'description' => 'Code benchmarking tool.',
 			
 			// Copyright message, shown in the footer for this module
-			'copyright' => '© 2008–2012 Kohana Team',
+			'copyright' => '© 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
 		]	
 	]
 ];

+ 1 - 1
modules/database/config/userguide.php

@@ -17,7 +17,7 @@ return [
 			'description' => 'Database agnostic querying and result management.',
 			
 			// Copyright message, shown in the footer for this module
-			'copyright' => '© 2008–2012 Kohana Team',
+			'copyright' => '© 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
 		]	
 	]
 ];

+ 1 - 1
modules/orm/config/userguide.php

@@ -17,7 +17,7 @@ return [
 			'description' => 'Official ORM module, a modeling library for object relational mapping.',
 			
 			// Copyright message, shown in the footer for this module
-			'copyright' => '© 2008–2012 Kohana Team',
+			'copyright' => '© 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
 		]	
 	]
 ];

+ 2 - 2
system/classes/Kohana/Core.php

@@ -270,7 +270,7 @@ class Kohana_Core {
 		if (Kohana::$caching === TRUE)
 		{
 			// Load the file path cache
-			Kohana::$_files = Kohana::file_cache('Kohana::find_file()');
+			Kohana::$_files = Kohana::cache('Kohana::find_file()');
 		}
 
 		if (isset($settings['charset']))
@@ -968,7 +968,7 @@ class Kohana_Core {
 			if (Kohana::$caching === TRUE AND Kohana::$_files_changed === TRUE)
 			{
 				// Write the file path cache
-				Kohana::file_cache('Kohana::find_file()', Kohana::$_files);
+				Kohana::cache('Kohana::find_file()', Kohana::$_files);
 			}
 		}
 		catch (Exception $e)