Changes from branches/3.1/wp-includes/version.php at r18043 to trunk/wp-includes/version.php at r18306
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/version.php
r18043 r18306 1 1 <?php 2 /*3 WordPress - Web publishing software4 5 This program is free software; you can redistribute it and/or6 modify it under the terms of the GNU General Public License7 as published by the Free Software Foundation; either version 28 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 of12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13 GNU General Public License for more details.14 15 You should have received a copy of the GNU General Public License16 along with this program; if not, write to the Free Software17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.18 */19 20 2 /** 21 3 * The WordPress version string … … 23 5 * @global string $wp_version 24 6 */ 25 $wp_version = '3. 1.3';7 $wp_version = '3.2-RC1'; 26 8 27 9 /** … … 30 12 * @global int $wp_db_version 31 13 */ 32 $wp_db_version = 1 7516;14 $wp_db_version = 18226; 33 15 34 16 /** … … 37 19 * @global string $tinymce_version 38 20 */ 39 $tinymce_version = '3 393a';21 $tinymce_version = '342-20110610'; 40 22 41 23 /** … … 51 33 * @global string $required_php_version 52 34 */ 53 $required_php_version = ' 4.3';35 $required_php_version = '5.2.4'; 54 36 55 37 /** … … 58 40 * @global string $required_mysql_version 59 41 */ 60 $required_mysql_version = ' 4.1.2';42 $required_mysql_version = '5.0';
Note: See TracChangeset
for help on using the changeset viewer.