]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #381 from tcitworld/dev
authorNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Mon, 6 Jan 2014 18:07:29 +0000 (10:07 -0800)
committerNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Mon, 6 Jan 2014 18:07:29 +0000 (10:07 -0800)
Flattr Class : Bug 359

inc/poche/Database.class.php
poche_compatibility_test.php

index d8b6385988265a2238c79f427a2b93ccbf715044..04731821fb3311a6cd0e6180bfe5d8bc4ec9ebdb 100644 (file)
@@ -81,7 +81,7 @@ class Database {
 
         if (STORAGE == 'sqlite') {
             $sql = '
-                CREATE TABLE tags_entries (
+                CREATE TABLE IF NOT EXISTS tags_entries (
                     id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
                     entry_id INTEGER,
                     tag_id INTEGER,
index eed3c391377116b4f9653463478ad26f581d2474..42faaa2ce705f996a6b5992e774bce81edc0d564 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-$app_name = 'poche 1.0';
+$app_name = 'poche 1.3';
 
 $php_ok = (function_exists('version_compare') && version_compare(phpversion(), '5.3.3', '>='));
 $pcre_ok = extension_loaded('pcre');