From 7f32bf5739072d3f2945c08e0a23fa67bd108500 Mon Sep 17 00:00:00 2001 From: hahn <axel.hahn@iml.unibe.ch> Date: Thu, 31 Aug 2017 08:48:27 +0200 Subject: [PATCH] ci server - valuestore: fix dbcreate --- public_html/valuestore/classes/valuestore.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/valuestore/classes/valuestore.class.php b/public_html/valuestore/classes/valuestore.class.php index 7729d78f..8110ba38 100644 --- a/public_html/valuestore/classes/valuestore.class.php +++ b/public_html/valuestore/classes/valuestore.class.php @@ -124,7 +124,7 @@ class valuestore { echo $this->_bDebug ? "removing existing file $this->_dbfile ...<br>\n" : ''; unlink($this->_dbfile); } - // after deleting the db file we nee to re instantiate + // after deleting the db file we need to re instantiate echo $this->_bDebug ? "create database as file $this->_dbfile ...<br>\n" : ''; $this->_oDB = new PDO("sqlite:" . $this->_dbfile); $this->_makeQuery($this->_sCreate); -- GitLab