From 18ff5b6d674038ab758fe44b53ae62fc18fa370f Mon Sep 17 00:00:00 2001 From: Takayuki Miyoshi Date: Sun, 16 Jun 2024 16:52:42 +0900 Subject: [PATCH] Rename $args to $options #1369 --- includes/html-formatter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/html-formatter.php b/includes/html-formatter.php index 3e27c17f..7890c6c8 100644 --- a/includes/html-formatter.php +++ b/includes/html-formatter.php @@ -95,8 +95,8 @@ class WPCF7_HTMLFormatter { /** * Constructor. */ - public function __construct( $args = '' ) { - $this->options = wp_parse_args( $args, array( + public function __construct( $options = '' ) { + $this->options = wp_parse_args( $options, array( 'auto_br' => true, 'auto_indent' => true, ) );