PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 5.6
FileBird – WordPress Media Library Folders & File Manager v5.6
6.5.8 6.5.7 6.5.5 6.5.4 trunk 4.3.1 5.1.6 5.3 5.3.2 5.4.3 5.4.4 5.4.5 5.5 5.5.3 5.5.5 5.5.8 5.5.8.1 5.6 5.6.1 5.6.2 5.6.3 5.6.4 6.2.3 6.2.5 6.3 All 36 releases
filebird / includes / Fallback.php

Fallback.php in FileBird – WordPress Media Library Folders & File Manager 5.6, at includes/Fallback.php

23 lines 678 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4 add_action(
5 'admin_notices',
6 function() {
7 if ( current_user_can( 'activate_plugins' ) ) {
8 ?>
9 <div class="notice notice-error is-dismissible">
10 <p>
11 <strong><?php esc_html_e( 'It looks like you have another FileBird version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'filebird' ); ?>
12 <a href="https://ninjateam.gitbook.io/filebird/how-to-update-filebird"><?php esc_html_e( 'Read more details.', 'filebird' ); ?></a>
13 </strong>
14 </p>
15 </div>
16 <?php
17 if ( isset( $_GET['activate'] ) ) {
18 unset( $_GET['activate'] );
19 }
20 }
21 }
22 );
23