diff options
author | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-05-11 10:34:29 +0200 |
---|---|---|
committer | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-05-11 10:34:29 +0200 |
commit | d1f8640a3b95243ce0d28564b07ed5da336de542 (patch) | |
tree | 423835d83091e3f4031875de90a33264a8f6e35c /includes/RevisionList.php | |
parent | ae78b076cda493be1294918b25f9ee8dfeeb04fc (diff) | |
download | mediawikicore-d1f8640a3b95243ce0d28564b07ed5da336de542.tar.gz mediawikicore-d1f8640a3b95243ce0d28564b07ed5da336de542.zip |
Added missing GPLv2 headers in some places.
Also made file/class documentation more consistent.
Change-Id: Ia45d0756cd84138da267bf1cbd1a58be7f28c6d1
Diffstat (limited to 'includes/RevisionList.php')
-rw-r--r-- | includes/RevisionList.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/includes/RevisionList.php b/includes/RevisionList.php index a61120e79f07..488ef52f0f4c 100644 --- a/includes/RevisionList.php +++ b/includes/RevisionList.php @@ -1,5 +1,26 @@ <?php /** + * Holders of revision list for a single page + * + * 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. + * + * 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 + * + * @file + */ + +/** * List for revision table items for a single page */ abstract class RevisionListBase extends ContextSource { |