Skip to content

Commit a4c9391

Browse files
Fixed default value for activitypub_authorized_fetch (#1465)
* fix default for `activitypub_authorized_fetch` * Add changelog * fixed value attribute props @obenland --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 460e1b1 commit a4c9391

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Significance: patch
2+
Type: fixed
3+
4+
Fixed default value for `activitypub_authorized_fetch` option.

includes/wp-admin/class-settings-fields.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public static function render_outbox_purge_days_field() {
466466
* Render use hashtags field.
467467
*/
468468
public static function render_authorized_fetch_field() {
469-
$value = get_option( 'activitypub_authorized_fetch', '1' );
469+
$value = get_option( 'activitypub_authorized_fetch', '0' );
470470
?>
471471
<p>
472472
<label>

0 commit comments

Comments
 (0)