minimum of control on server side added

This commit is contained in:
Maryana Rozhankivska 2014-08-15 19:22:55 +03:00
parent b738bea9ca
commit dc76489221

View file

@ -906,7 +906,7 @@ class Poche
*/ */
public function import() { public function import() {
if ( isset($_FILES['file']) ) { if ( isset($_FILES['file']) && $_FILES['file']['tmp_name'] ) {
Tools::logm('Import stated: parsing file'); Tools::logm('Import stated: parsing file');
// assume, that file is in json format // 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).'); 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 //file parsing finished here
//now download article contents if any //now download article contents if any