| 1 | Index: wp-includes/version.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-includes/version.php (revision 17342) |
|---|
| 4 | +++ wp-includes/version.php (working copy) |
|---|
| 5 | @@ -1,22 +1,45 @@ |
|---|
| 6 | <?php |
|---|
| 7 | -/* |
|---|
| 8 | -WordPress - Web publishing software |
|---|
| 9 | +/** |
|---|
| 10 | + * WordPress - Web publishing software |
|---|
| 11 | + * |
|---|
| 12 | + * Copyright 2011 by the contributors |
|---|
| 13 | + * |
|---|
| 14 | + * This program is free software; you can redistribute it and/or modify |
|---|
| 15 | + * it under the terms of the GNU General Public License as published by |
|---|
| 16 | + * the Free Software Foundation; either version 2 of the License, or |
|---|
| 17 | + * (at your option) any later version. |
|---|
| 18 | + * |
|---|
| 19 | + * This program is distributed in the hope that it will be useful, |
|---|
| 20 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 21 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 22 | + * GNU General Public License for more details. |
|---|
| 23 | + * |
|---|
| 24 | + * You should have received a copy of the GNU General Public License |
|---|
| 25 | + * along with this program; if not, write to the Free Software |
|---|
| 26 | + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 27 | + * |
|---|
| 28 | + * This program incorporates work covered by the following copyright and |
|---|
| 29 | + * permission notices: |
|---|
| 30 | + * |
|---|
| 31 | + * b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com - |
|---|
| 32 | + * http://tidakada.com |
|---|
| 33 | + * |
|---|
| 34 | + * Wherever third party code has been used, credit has been given in the code's |
|---|
| 35 | + * comments. |
|---|
| 36 | + * |
|---|
| 37 | + * b2 is released under the GPL (see license.txt). |
|---|
| 38 | + * |
|---|
| 39 | + * and |
|---|
| 40 | + * |
|---|
| 41 | + * WordPress - Web publishing software |
|---|
| 42 | + * |
|---|
| 43 | + * Copyright 2003-2010 by the contributors |
|---|
| 44 | + * |
|---|
| 45 | + * WordPress is released under the GPL (see license.txt) |
|---|
| 46 | + * |
|---|
| 47 | + * @package WordPress |
|---|
| 48 | + */ |
|---|
| 49 | |
|---|
| 50 | -This program is free software; you can redistribute it and/or |
|---|
| 51 | -modify it under the terms of the GNU General Public License |
|---|
| 52 | -as published by the Free Software Foundation; either version 2 |
|---|
| 53 | -of the License, or (at your option) any later version. |
|---|
| 54 | - |
|---|
| 55 | -This program is distributed in the hope that it will be useful, |
|---|
| 56 | -but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 57 | -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 58 | -GNU General Public License for more details. |
|---|
| 59 | - |
|---|
| 60 | -You should have received a copy of the GNU General Public License |
|---|
| 61 | -along with this program; if not, write to the Free Software |
|---|
| 62 | -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|---|
| 63 | -*/ |
|---|
| 64 | - |
|---|
| 65 | /** |
|---|
| 66 | * The WordPress version string |
|---|
| 67 | * |
|---|