mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-18 18:10:07 +01:00
minimum of control on server side added
This commit is contained in:
parent
b738bea9ca
commit
dc76489221
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user