After [29200], switch back to using static vars instead of adding 2 globals, as per Sergey.

Fixes #28697.


git-svn-id: https://develop.svn.wordpress.org/trunk@29250 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2014-07-19 23:13:19 +00:00
parent a1aa518788
commit ca5d586b8e
2 changed files with 2 additions and 15 deletions

View File

@@ -114,12 +114,10 @@ function ms_file_constants() {
* we will have translations loaded and can trigger warnings easily.
*
* @since 3.0.0
*
* @global boolean $subdomain_error
* @global boolean $subdomain_error_warn
*/
function ms_subdomain_constants() {
global $subdomain_error, $subdomain_error_warn;
static $subdomain_error = null;
static $subdomain_error_warn = null;
if ( false === $subdomain_error ) {
return;