PluginProbe
SQLite Database Integration / 2.2.0
SQLite Database Integration v2.2.0
3.0.2 3.0.1 trunk 2.1.13 2.1.14 2.1.15 2.1.16 2.2.0 2.2.1 2.2.10 2.2.11 2.2.12 2.2.13 2.2.14 2.2.15 2.2.16 2.2.17 2.2.18 2.2.19 2.2.2 2.2.20 2.2.21 2.2.22 2.2.23 2.2.3 All 32 releases
← All changes | admin-notices.php +3 -3 2.1.132.2.0 View file →
@@ -18,13 +18,13 @@
18 18 if ( isset( $current_screen->base ) && 'settings_page_sqlite-integration' === $current_screen->base ) {
19 19 return;
20 20 }
21 21
22 - // If SQLite is not detected, bail early.
23 - if ( ! class_exists( 'SQLite3' ) ) {
22 + // If PDO SQLite is not loaded, bail early.
23 + if ( ! extension_loaded( 'pdo_sqlite' ) ) {
24 24 printf(
25 25 '<div class="notice notice-error"><p>%s</p></div>',
26 - esc_html__( 'The SQLite Integration plugin is active, but the SQLite3 class is missing from your server. Please make sure that SQLite is enabled in your PHP installation.', 'sqlite-database-integration' )
26 + esc_html__( 'The SQLite Integration plugin is active, but the PDO SQLite extension is missing from your server. Please make sure that PDO SQLite is enabled in your PHP installation.', 'sqlite-database-integration' )
27 27 );
28 28 return;
29 29 }
30 30