]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
minimum of control on server side added 782/head
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>
Fri, 15 Aug 2014 16:22:55 +0000 (19:22 +0300)
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>
Fri, 15 Aug 2014 16:22:55 +0000 (19:22 +0300)
inc/poche/Poche.class.php

index 09a9f5ff85276423a29b505312d2f1cec66ead8a..bcf2ddeb6b36d3b0f88b458be3da87e807717d6e 100755 (executable)
@@ -906,7 +906,7 @@ class Poche
      */
     public function import() {
 
-      if ( isset($_FILES['file']) ) {
+      if ( isset($_FILES['file']) && $_FILES['file']['tmp_name'] ) {
         Tools::logm('Import stated: parsing file');
 
         // assume, that file is in json format
@@ -976,6 +976,9 @@ class Poche
         }
         Tools::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
       }
+      else {
+        $this->messages->add('s', _('Did you forget to select a file?'));
+      }
       //file parsing finished here
 
       //now download article contents if any