Title: Some errors in description
Last modified: August 21, 2016

---

# Some errors in description

 *  Resolved [BramVanroy](https://wordpress.org/support/users/bramvanroy/)
 * (@bramvanroy)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/some-errors-in-description/)
 * Hello
 * Great plugin! I always used jQuery for browser sniffing, but this is even better!
 * A small piece of advice though, please update the description of this plugin.
   Also, there are some errors there, such as:
 * > Check for greater than / less then a specific version…
 * Check for greater than / less **than **a specific version.
 * >  Less than or equal to Firefox 19:
   >  `<?php if(is_firefox() && get_browser_version()
   > >= 19) { /* do stuff */ }; ?>`
 * Has to be:
    `<?php if(is_firefox() && get_browser_version() <= 19) { /* do stuff*/};?
   >`
 * >  Less than or equal to IE 10:
   >  `<?php if(is_ie() && get_browser_version() <
   > 10) { /* do stuff */ }; ?>`
 * Has to be:
    `<?php if(is_ie() && get_browser_version() <= 10) { /* do stuff */};?
   >`
 * >  Greater than or equal to Safari 4:
   >  `<?php if(is_safari() && get_browser_version()
   > > 4) { /* do stuff */ }; ?>`
 * >  Greater than or equal to Safari 4:
   >  `<?php if(is_safari() && get_browser_version()
   > > 4) { /* do stuff */ }; ?>`
 * Has to be:
    `<?php if(is_safari() && get_browser_version() >= 4) { /* do stuff*/};?
   >`
 * And so on.
 * [http://wordpress.org/extend/plugins/php-browser-detection/](http://wordpress.org/extend/plugins/php-browser-detection/)

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

 *  Plugin Author [Mindshare Labs, Inc.](https://wordpress.org/support/users/mindshare/)
 * (@mindshare)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/some-errors-in-description/#post-3721060)
 * Thanks these will be fixed in the next update!
 *  [quique.fe](https://wordpress.org/support/users/quiquefe/)
 * (@quiquefe)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-errors-in-description/#post-3721067)
 * Was a great information!
 * Thanks.

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

The topic ‘Some errors in description’ is closed to new replies.

 * ![](https://ps.w.org/php-browser-detection/assets/icon-256x256.png?rev=999338)
 * [PHP Browser Detection](https://wordpress.org/plugins/php-browser-detection/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/php-browser-detection/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/php-browser-detection/)
 * [Active Topics](https://wordpress.org/support/plugin/php-browser-detection/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/php-browser-detection/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/php-browser-detection/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [quique.fe](https://wordpress.org/support/users/quiquefe/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/some-errors-in-description/#post-3721067)
 * Status: resolved