2 | | /* |
3 | | WordPress - Web publishing software |
| 2 | /** |
| 3 | * WordPress - Web publishing software |
| 4 | * |
| 5 | * Copyright 2011 by the contributors, some rights reserved |
| 6 | * |
| 7 | * This file's contributors are named in the revisions log at |
| 8 | * <http://core.trac.wordpress.org/log/trunk/wp-includes/functions.php>. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 23 | * |
| 24 | * This file incorporates work covered by the following copyright and |
| 25 | * permission notice(s): |
| 26 | * |
| 27 | * b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com - |
| 28 | * http://tidakada.com |
| 29 | * |
| 30 | * Wherever third party code has been used, credit has been given in the code's |
| 31 | * comments. |
| 32 | * b2 is released under the GPL (see license.txt). |
| 33 | * |
| 34 | * and |
| 35 | * |
| 36 | * Copyright 2003-2010 by the contributors, some rights reserved |
| 37 | * |
| 38 | * Code in this file is free software; you can redistribute it and/or modify |
| 39 | * it under the terms of the GNU General Public License as published by |
| 40 | * the Free Software Foundation; either version 2 of the License, or |
| 41 | * (at your option) any other version. |
| 42 | * |
| 43 | * @package WordPress |
| 44 | */ |
5 | | This program is free software; you can redistribute it and/or |
6 | | modify it under the terms of the GNU General Public License |
7 | | as published by the Free Software Foundation; either version 2 |
8 | | of the License, or (at your option) any later version. |
9 | | |
10 | | This program is distributed in the hope that it will be useful, |
11 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | | GNU General Public License for more details. |
14 | | |
15 | | You should have received a copy of the GNU General Public License |
16 | | along with this program; if not, write to the Free Software |
17 | | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | | */ |
19 | | |