From 20b4d7d621fd7e4d3078b9928fbf7643da64f08b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 8 Oct 2014 21:23:34 +0200 Subject: [PATCH] query for populate mysql/postgres was called when we choosed sqlite --- install/index.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install/index.php b/install/index.php index 00ac4a2..89dfc01 100755 --- a/install/index.php +++ b/install/index.php @@ -155,8 +155,10 @@ else if (isset($_POST['install'])) { } } - // create database structure - $query = $handle->exec($sql_structure); + if ($_POST['db_engine'] != "sqlite") { + // create database structure + $query = $handle->exec($sql_structure); + } // Create user $handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); @@ -254,7 +256,7 @@ else if (isset($_POST['install'])) {

To install wallabag, you just have to fill the following fields. That's all.

-

Don't forget to check your server compatibility here.

+

Don't forget to check your server compatibility here.

Technical settings