WPIntell

Source evidence

Strict Standards error notice

Adobe Analytics for WordPress by RepEquity · support · 2014-06-17T23:34:00+00:00

neutralsentiment
mediumseverity
0.42relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 34 rows with source links

14.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
jpresley23 resolved
There is a Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method Adobe_Analytics::init() should not be called statically in /Users/jpresley/Sites/wordpressunified/httpdocs/wp-includes/plugin.php on line 429 notice. This can be fixed by either changing the lines add_action('init', array('Adobe_Analytics', 'init')); add_action( 'wp_print_footer_scripts', array('Adobe_Analytics', 'script'), 50 ); to add_action('init', array(&$adobe_analytics, 'init')); add_action( 'wp_print_footer_scripts', array( &$adobe_analytics, 'script'), 50 ); adobe_analytics.php. Alternatively you can change the definitions of ‘script’ and ‘init’ methods to public static function. https://wordpress.org/plugins/adobe-analytics/ Passing the object by reference would be incorrect. Just omit the ampersand before the $adobe_analytics object.

Comments

1 shown
Austin 2015-05-20T21:03:00+00:00

Passing the object by reference would be incorrect. Just omit the ampersand before the $adobe_analytics object.