Skip to content

Commit

Permalink
Merge pull request #116 from kaldor/fix_incorrect_default_for_update_…
Browse files Browse the repository at this point in the history
…setting

Removing an incorrect default for an `update_setting()` call
  • Loading branch information
radgeek committed Aug 19, 2020
2 parents ea3ed40 + ece7887 commit 177b932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syndicatedlink.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public function poll ($crash_ts = NULL) {
$ttl = $this->automatic_ttl();
$ttl = apply_filters('syndicated_feed_ttl', $ttl, $this);
$ttl = apply_filters('syndicated_feed_ttl_from_error', $ttl, $this);
$this->update_setting('update/ttl', $ttl, $this);
$this->update_setting('update/ttl', $ttl);
$this->update_setting('update/timed', 'automatically');
endif;

Expand Down

0 comments on commit 177b932

Please sign in to comment.