PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
← All changes | includes/libraries/browser.php +5 -2 2.30.04.16.9 View file →
@@ -215,9 +215,12 @@
215 215 public $PLATFORM_ANDROID = 'Android';
216 216
217 217 public $OPERATING_SYSTEM_UNKNOWN = 'unknown';
218 218
219 - function Browser( $useragent = "" ) {
219 + /**
220 + * @since 4.9.0 rename function - PHP 8 compatibility
221 + */
222 + public function __construct( $useragent = "" ) {
220 223 $this->reset();
221 224 if ( $useragent != "" ) {
222 225 $this->setUserAgent( $useragent );
223 226 } else {
@@ -1174,5 +1177,5 @@
1174 1177 $this->_platform = $this->PLATFORM_WINDOWS;
1175 1178 }
1176 1179
1177 1180 }
1178 -}
1181 +}