From 8253f8475769e675e91e83dde7854d33d6b52cd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20S=C3=B8derlind?= Date: Sun, 14 Apr 2024 22:04:27 +0200 Subject: [PATCH] Check if SQLite is installed and has the correct version. fix #10 --- wp-loupe.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-loupe.php b/wp-loupe.php index 28c6432..cb33944 100644 --- a/wp-loupe.php +++ b/wp-loupe.php @@ -67,6 +67,7 @@ class WPLoupe { */ public function __construct() { + // Check if SQLite is installed and has the correct version. if ( ! $this->has_sqlite() ) { return; }