Title: [Plugin: Page Tagger] Plugin changes global $wp_version
Last modified: August 20, 2016

---

# [Plugin: Page Tagger] Plugin changes global $wp_version

 *  Resolved [ttrl](https://wordpress.org/support/users/ttrl/)
 * (@ttrl)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-page-tagger-plugin-changes-global-wp_version/)
 * Hi,
 * I#m not sure, but on my WordPress installation the line 51 in page-tagger.php:“
   $wp_version = floatval(get_bloginfo(‘version’));” changes $wp_version globally
   to a float. Other plugins have issues with this.
 * Am I right?
 * Best
    Tino
 * [http://wordpress.org/extend/plugins/page-tagger/](http://wordpress.org/extend/plugins/page-tagger/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Ov3rfly](https://wordpress.org/support/users/ov3rfly/)
 * (@ov3rfly)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-page-tagger-plugin-changes-global-wp_version/#post-2952328)
 * You are right, this should be fixed asap!
 * It breaks the version display in backend footer and “Right Now” panel, the revision
   is not visible any more, e.g. shows 3.4 instead of 3.4.2
 * Old:
 *     ```
       $wp_version = floatval(get_bloginfo('version'));
       if (3 <= $wp_version)
       ```
   
 * Suggested quick-fix:
 *     ```
       // $wp_version = floatval(get_bloginfo('version'));
       if (3 <= floatval(get_bloginfo('version')))
       ```
   
 * Actually that whole version compare mechanism should be rewritten…
 *  Plugin Author [hiddentao](https://wordpress.org/support/users/randomaniac/)
 * (@randomaniac)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-page-tagger-plugin-changes-global-wp_version/#post-2952351)
 * This is now fixed in the latest release. Thanks for reporting it!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Page Tagger] Plugin changes global $wp_version’ is closed to
new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/page-tagger.svg)
 * [Page Tagger](https://wordpress.org/plugins/page-tagger/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/page-tagger/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/page-tagger/)
 * [Active Topics](https://wordpress.org/support/plugin/page-tagger/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/page-tagger/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/page-tagger/reviews/)

## Tags

 * [overwrite](https://wordpress.org/support/topic-tag/overwrite/)
 * [overwritten](https://wordpress.org/support/topic-tag/overwritten/)

 * 2 replies
 * 3 participants
 * Last reply from: [hiddentao](https://wordpress.org/support/users/randomaniac/)
 * Last activity: [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-page-tagger-plugin-changes-global-wp_version/#post-2952351)
 * Status: resolved