Title: Error in view/Dashboard.php
Last modified: March 24, 2026

---

# Error in view/Dashboard.php

 *  Resolved [den1xxx](https://wordpress.org/support/users/den1xxx/)
 * (@den1xxx)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/error-in-view-dashboard-php/)
 *     ```wp-block-code
                       $stats = array();
   
                       if ( ! $stats['block_ip'] ) {
                           $stats['block_ip'] = '-';
                       }
                       if ( ! $stats['alerts'] ) {
                           $stats['alerts'] = '-';
                       }
       ```
   
 * This is 113-120 block code in wp-content/plugins/hide-my-wp/view/Dashboard.php
 * To fix problem
 * ![](https://ibb.co/wrgR86Rj)
 * ( ! $stats[‘block_ip’] ) change to ( empty($stats[‘block_ip’]) )
 * ( ! $stats[‘alerts’] ) change to ( empty($stats[‘alerts’]) )
 * OR:
 * $stats[‘block_ip’] = $stats[‘block_ip’] ?? ‘-‘;
 * $stats[‘alerts’] = $stats[‘alerts’] ?? ‘-‘;
    -  This topic was modified 2 months, 2 weeks ago by [den1xxx](https://wordpress.org/support/users/den1xxx/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [den1xxx](https://wordpress.org/support/users/den1xxx/)
 * (@den1xxx)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/error-in-view-dashboard-php/#post-18860744)
 * Hmm, simple
 * $stats = array(‘block_ip’=>’-‘,’alerts’=>’-‘);
 *  Plugin Support [Peter](https://wordpress.org/support/users/petersquirrly/)
 * (@petersquirrly)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/error-in-view-dashboard-php/#post-18861502)
 * Thank you for the heads up! We implemented the fix and it will be available in
   the next update.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ferror-in-view-dashboard-php%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/hide-my-wp/assets/icon-256x256.png?rev=3217792)
 * [WP Ghost (Hide My WP Ghost) - Security & Firewall](https://wordpress.org/plugins/hide-my-wp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/hide-my-wp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/hide-my-wp/)
 * [Active Topics](https://wordpress.org/support/plugin/hide-my-wp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/hide-my-wp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/hide-my-wp/reviews/)

## Tags

 * [error fix](https://wordpress.org/support/topic-tag/error-fix/)

 * 2 replies
 * 2 participants
 * Last reply from: [Peter](https://wordpress.org/support/users/petersquirrly/)
 * Last activity: [2 months, 2 weeks ago](https://wordpress.org/support/topic/error-in-view-dashboard-php/#post-18861502)
 * Status: resolved