Fatal error: Can’t use function return value in write context
-
There is an error:
Fatal Error (E_COMPILE_ERROR): Can’t use function return value in write context occurred in wp-content/plugins/google-analytics-for-wordpress/lite/includes/admin/wp-site-health.php on line 106Fix for this is:
Change:
$this->is_tracking = ! empty( monsterinsights_get_ua() );To this:
$UAvar = monsterinsights_get_ua();
$this->is_tracking = ! empty( $UAvar );
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Fatal error: Can’t use function return value in write context’ is closed to new replies.