Browse Source

Updated copyright year

Tobias Reich 9 years ago
parent
commit
9278182b10
5 changed files with 10 additions and 10 deletions
  1. 1 1
      README.md
  2. 4 4
      docs/Plugins.md
  3. 1 1
      php/modules/Database.php
  4. 1 1
      plugins/check/index.php
  5. 3 3
      plugins/displaylog/index.php

+ 1 - 1
README.md

@@ -79,7 +79,7 @@ I am working hard on continuously developing and maintaining Lychee. Please cons
 
 (MIT License)
 
-Copyright (C) 2014 [Tobias Reich](http://electerious.com)
+Copyright (C) 2015 [Tobias Reich](http://electerious.com)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 4 - 4
docs/Plugins.md

@@ -20,7 +20,7 @@ The plugin-system of Lychee allows you to execute scripts, when a certain action
 ###
 # @name			ExamplePlugin
 # @author		Tobias Reich
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 ###
 
 if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
@@ -36,7 +36,7 @@ class ExamplePlugin implements SplObserver {
 		# Save them to access the database and settings of Lychee
 		$this->database = $database;
 		$this->settings = $settings;
-		
+
 		# Add more code here if wanted
 		# __construct() will be called every time Lychee gets called
 		# Make sure this part is performant
@@ -55,9 +55,9 @@ class ExamplePlugin implements SplObserver {
 		# $this->database => The database of Lychee
 		# $this->settings => The settings of Lychee
 		# $subject->args => Params passed to the original function
-		
+
 		return true;
-		
+
 	}
 
 }

+ 1 - 1
php/modules/Database.php

@@ -104,7 +104,7 @@ $config = "<?php
 ###
 # @name			Configuration
 # @author		Tobias Reich
-# @copyright	2014 Tobias Reich
+# @copyright	2015 Tobias Reich
 ###
 
 if(!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

+ 1 - 1
plugins/check/index.php

@@ -3,7 +3,7 @@
 ###
 # @name			Check Plugin
 # @author		Tobias Reich
-# @copyright	2014 by Tobias Reich
+# @copyright	2015 by Tobias Reich
 # @description	This file takes a look at your Lychee-configuration and displays all errors it can find.
 ###
 

+ 3 - 3
plugins/displaylog/index.php

@@ -1,9 +1,9 @@
 <?php
 
 ###
-# @name		Display Log Plugin
-# @author	Tobias Reich
-# @copyright	2014 by Tobias Reich
+# @name			Display Log Plugin
+# @author		Tobias Reich
+# @copyright	2015 by Tobias Reich
 # @description	This file queries the database for log messages and displays them if present.
 ###