Skip to content
Snippets Groups Projects
Commit 9322313b authored by Alex Barth's avatar Alex Barth
Browse files

Fix warnings on run time pass by reference.

parent 287c30d0
No related branches found
No related tags found
No related merge requests found
...@@ -271,7 +271,7 @@ class FeedsImporter extends FeedsConfigurable { ...@@ -271,7 +271,7 @@ class FeedsImporter extends FeedsConfigurable {
if ($this->config['import_period'] != $values['import_period']) { if ($this->config['import_period'] != $values['import_period']) {
feeds_reschedule($this->id); feeds_reschedule($this->id);
} }
parent::configFormSubmit(&$values); parent::configFormSubmit($values);
} }
} }
......
...@@ -234,7 +234,7 @@ class FeedsNodeProcessor extends FeedsProcessor { ...@@ -234,7 +234,7 @@ class FeedsNodeProcessor extends FeedsProcessor {
if ($this->config['expire'] != $values['expire']) { if ($this->config['expire'] != $values['expire']) {
feeds_reschedule($this->id); feeds_reschedule($this->id);
} }
parent::configFormSubmit(&$values); parent::configFormSubmit($values);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment