]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
lors de l'import, les liens déjà lus dans Pocket étaient repris en tant que non lus...
authornicosomb <nicolas@loeuillet.org>
Thu, 18 Apr 2013 09:18:28 +0000 (11:18 +0200)
committernicosomb <nicolas@loeuillet.org>
Thu, 18 Apr 2013 09:18:28 +0000 (11:18 +0200)
import.php

index 9b42071b9a9138c62d1bf0fdb5da854a8614c357..135443c9a4746517b339b07b6df37d9547b75769 100644 (file)
@@ -20,7 +20,7 @@ else {
     $html = new simple_html_dom();
     $html->load_file('ril_export.html');
 
-    $read = '0';
+    $read = 0;
     $errors = array();
     foreach($html->find('ul') as $ul)
     {
@@ -31,11 +31,18 @@ else {
 
 
             action_to_do('add', $url, $token);
+            if ($read == '1') {
+                $last_id = $db->getHandle()->lastInsertId();
+                $sql_update     = "UPDATE entries SET is_read=~is_read WHERE id=?";
+                $params_update  = array($last_id);
+                $query_update   = $db->getHandle()->prepare($sql_update);
+                $query_update->execute($params_update);
+            }
         }
         # Pocket génère un fichier HTML avec deux <ul>
         # Le premier concerne les éléments non lus
         # Le second concerne les éléments archivés
-        $read = '-1';
+        $read = 1;
     }
 
     echo 'Import from Pocket completed. <a href="index.php">Welcome to #poche !</a>';