globalize wp_version so Magpie can use it. props Nazgul, hakre. fixes #3996

git-svn-id: https://develop.svn.wordpress.org/trunk@5859 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-08-10 08:07:53 +00:00
parent 5dfab7711f
commit c441bc3d96
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ do_action('load_feed_engine');
define('RSS', 'RSS');
define('ATOM', 'Atom');
define('MAGPIE_USER_AGENT', 'WordPress/' . $wp_version);
define('MAGPIE_USER_AGENT', 'WordPress/' . $GLOBALS['wp_version']);
class MagpieRSS {
var $parser;
@ -595,7 +595,7 @@ function init () {
}
if ( !defined('MAGPIE_USER_AGENT') ) {
$ua = 'WordPress/' . $wp_version;
$ua = 'WordPress/' . $GLOBALS['wp_version'];
if ( MAGPIE_CACHE_ON ) {
$ua = $ua . ')';