WPIntell

Source evidence

Some errors

Debug Bar Slow Actions · support · 2014-02-10T08:36:00+00:00

mixedsentiment
mediumseverity
0.78relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

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

6 / 35 rows with source links

17.1% 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
LehaMotovilov resolved
Warning array_pop() expects parameter 1 to be array, null given 1 wp-content/plugins/debug-bar-slow-actions/debug-bar-slow-actions.php:63 Warning Invalid argument supplied for foreach() 1 wp-content/plugins/debug-bar-slow-actions/debug-bar-slow-actions.php:88 Notice Undefined index: time 1 wp-content/plugins/debug-bar-slow-actions/debug-bar-slow-actions.php:88 Notice Undefined index: count 1 wp-content/plugins/debug-bar-slow-actions/debug-bar-slow-actions.php:93 https://wordpress.org/plugins/debug-bar-slow-actions/ Should be fixed in 0.8.2, thanks for reporting! Всегда пожалуйста 🙂 I experienced the same issue, fixed by changing this: $time = array_pop( $this->flow['wp_footer']['stack'] ); to this: $time = ( ! empty( $this->flow['wp_footer'] ) && is_array( $this->flow['wp_footer']['stack'] ) ) ? array_pop( $this->flow['wp_footer']['stack'] ) : false; on line 63 in debug-bar-slow-actions.php Thanks for the great plugin!

Comments

3 shown
Konstantin Kovshenin 2014-02-11T08:43:00+00:00

Should be fixed in 0.8.2, thanks for reporting!

LehaMotovilov 2014-02-11T08:51:00+00:00

Всегда пожалуйста 🙂

OriginalEXE 2014-02-12T02:21:00+00:00

I experienced the same issue, fixed by changing this: $time = array_pop( $this->flow['wp_footer']['stack'] ); to this: $time = ( ! empty( $this->flow['wp_footer'] ) && is_array( $this->flow['wp_footer']['stack'] ) ) ? array_pop( $this->flow['wp_footer']['stack'] ) : false; on line 63 in debug-bar-slow-actions.php Thanks for the great plugin!