aboutsummaryrefslogtreecommitdiffstats
path: root/includes/actions/CachedAction.php
diff options
context:
space:
mode:
authorAlexandre Emsenhuber <ialex.wiki@gmail.com>2012-06-02 15:09:36 +0200
committerAlexandre Emsenhuber <ialex.wiki@gmail.com>2012-06-03 22:54:44 +0200
commit2c7bf8b8b86965f4d55357010fda558d3bd012ff (patch)
tree857d67a11945f7b3b69a8571f4e1f44146fb90fa /includes/actions/CachedAction.php
parent7105c5e9837896b0cc27f9127525a7a580dc35de (diff)
downloadmediawikicore-2c7bf8b8b86965f4d55357010fda558d3bd012ff.tar.gz
mediawikicore-2c7bf8b8b86965f4d55357010fda558d3bd012ff.zip
Added missing GPLv2 headers in some places.
Also made file/class documentation more consistent. Change-Id: Ie95c594fcd686ef30dadc7574d3e5b47236a8638
Diffstat (limited to 'includes/actions/CachedAction.php')
-rw-r--r--includes/actions/CachedAction.php22
1 files changed, 17 insertions, 5 deletions
diff --git a/includes/actions/CachedAction.php b/includes/actions/CachedAction.php
index 3f73ea4285f8..d21f9aeb42ce 100644
--- a/includes/actions/CachedAction.php
+++ b/includes/actions/CachedAction.php
@@ -17,13 +17,25 @@
* computations here. This function should returns the HTML to be cached.
* It should not add anything to the PageOutput object!
*
- * @since 1.20
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
*
- * @file CachedAction.php
- * @ingroup Action
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
*
- * @licence GNU GPL v2 or later
+ * @file
+ * @ingroup Action
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
+ * @since 1.20
*/
abstract class CachedAction extends FormlessAction implements ICacheHelper {
@@ -167,4 +179,4 @@ abstract class CachedAction extends FormlessAction implements ICacheHelper {
}
}
-} \ No newline at end of file
+}