HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux bsx-1-dev 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/memberpress/app/views/shared/errors.php
<?php if (!defined('ABSPATH')) {
    die('You are not allowed to call this page directly.');
} ?>

<?php if (isset($errors) && is_array($errors) && count($errors) > 0) : ?>
<div class="mp_wrapper">
  <div class="mepr_error" id="mepr_jump">
    <ul>
      <?php foreach ($errors as $single_error) : ?>
        <li><strong><?php echo esc_html_x('ERROR', 'ui', 'memberpress'); ?></strong>: <?php echo wp_kses($single_error, MeprAppHelper::kses_allowed_tags()); ?></li>
      <?php endforeach; ?>
    </ul>
  </div>
</div>
<?php endif; ?>

<?php if (isset($message) and !empty($message)) : ?>
<div class="mp_wrapper">
  <div class="mepr_updated"><?php echo wp_kses($message, MeprAppHelper::kses_allowed_tags()); ?></div>
</div>
<?php endif; ?>