WPIntell

Source evidence

php warning in new version

MainWP Dashboard: Self-hosted WordPress Management for Agencies · support · 2026-05-17T15:36:00+00:00

complaintsentiment
mediumseverity
0.58relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

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

6 / 32 rows with source links

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

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Franky resolved
In modules/logs/classes/class-log-manager.php, this is causing a php warning in the frontend: if ( ! empty( $this->settings->options['enabled'] ) ) { add_action( 'mainwp_module_log_render_db_size_notice', array( $this->admin, 'render_logs_db_notice' ), 10, 1 ); } add_action( 'mainwp_module_log_render_db_update_notice', array( $this->admin, 'render_update_db_notice' ), 10, 1 ); because $this->admin is not defined in the frontend (causing dynamic images not to be generated due to php warnings). Wrapping this in a is_null check works: if (!is_null(($this->admin))) { if ( ! empty( $this->settings->options['enabled'] ) ) { add_action( 'mainwp_module_log_render_db_size_notice', array( $this->admin, 'render_logs_db_notice' ), 10, 1 ); } add_action( 'mainwp_module_log_render_db_update_notice', array( $this->admin, 'render_update_db_notice' ), 10, 1 ); } Hey @liedekef Thanks for reporting this to us. We will have it fixed in an upcoming release. A fix for this issue was included in version v6.1 of MainWP Dashboard. Thanks again for reporting this to us.

Comments

2 shown
Bojan Katusic 2026-05-18T14:35:00+00:00

Hey @liedekef Thanks for reporting this to us. We will have it fixed in an upcoming release.

Bojan Katusic 2026-05-26T15:29:00+00:00

A fix for this issue was included in version v6.1 of MainWP Dashboard. Thanks again for reporting this to us.