diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:56:55 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:56:55 -0700 |
commit | abe362bdd442739580d065b0b66300522cfab316 (patch) | |
tree | 8fc02d02bc8ad41f2138d39a86add12e4f90fa30 /mod/import_items.php | |
parent | ea331b043c306d4250365a876c9e9ee857d4bdeb (diff) | |
download | volse-hubzilla-abe362bdd442739580d065b0b66300522cfab316.tar.gz volse-hubzilla-abe362bdd442739580d065b0b66300522cfab316.tar.bz2 volse-hubzilla-abe362bdd442739580d065b0b66300522cfab316.zip |
issues encountered whilst testing import_items module using yearly dump files
Diffstat (limited to 'mod/import_items.php')
-rw-r--r-- | mod/import_items.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/import_items.php b/mod/import_items.php index fe505ff87..1e54c0deb 100644 --- a/mod/import_items.php +++ b/mod/import_items.php @@ -85,10 +85,9 @@ function import_items_post(&$a) { $channel = $a->get_channel(); - $saved_notification_flags = notifications_off($channel['channel_id']); - if($import_posts && array_key_exists('item',$data) && $data['item']) { + if(array_key_exists('item',$data) && $data['item']) { foreach($data['item'] as $i) { $item = get_item_elements($i); |