In kses.php, ensure that $allowedposttags, $allowedtags, and $allowedentitynames are added to the global namespace.

Props Jaza613.
Fixes #28582.



git-svn-id: https://develop.svn.wordpress.org/trunk@28845 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-06-26 02:13:16 +00:00
parent b4c75b8ab1
commit 4d1313bffc

View File

@ -44,6 +44,10 @@
if ( ! defined( 'CUSTOM_TAGS' ) )
define( 'CUSTOM_TAGS', false );
// Ensure that these variables are added to the global namespace
// (e.g. if using namespaces / autoload in the current PHP environment).
global $allowedposttags, $allowedtags, $allowedentitynames;
if ( ! CUSTOM_TAGS ) {
/**
* Kses global for default allowable HTML tags.