mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-13 11:41:34 +01:00
e8b2a769ee
Most browsers no longer trust 1024bit certificates, or certificates signed by them, instead verifying them by a trusted intermediate or a cross-sign from another trusted certificate. Unfortunately, as it turns out, OpenSSL prior to 1.0.1g cannot correctly handle certificates chains such as this, even if one of the intermediates is trusted. The solution is that we need to continue to trust the 1024bit legacy root certificates forthe foreseeable future This adds the following certificates back into our trust store: {{{ GTE CyberTrust Global Root Thawte Server CA Thawte Premium Server CA Verisign Class 3 Public Primary Certification Authority Verisign Class 3 Public Primary Certification Authority - G2 ValiCert Class 1 VA ValiCert Class 2 VA RSA Root Certificate 1 Entrust.net Secure Server CA Equifax Secure Global eBusiness CA Equifax Secure eBusiness CA 1 America Online Root Certification Authority 1 America Online Root Certification Authority 2 NetLock Business (Class B) Root NetLock Express (Class C) Root Verisign Class 3 Public Primary Certification Authority }}} Props rmccue Fixes #34935 for trunk. Built from https://develop.svn.wordpress.org/trunk@35919 git-svn-id: http://core.svn.wordpress.org/trunk@35883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
36 lines
629 B
PHP
36 lines
629 B
PHP
<?php
|
|
/**
|
|
* The WordPress version string
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '4.5-alpha-35919';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 35700;
|
|
|
|
/**
|
|
* Holds the TinyMCE version
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '4208-20151113';
|
|
|
|
/**
|
|
* Holds the required PHP version
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.2.4';
|
|
|
|
/**
|
|
* Holds the required MySQL version
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|