Skip to content

Commit

Permalink
Saved changes now show on the front.
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Provance <kevin.provance@gmail.com>
  • Loading branch information
kprovance committed Jul 28, 2021
1 parent 4747cbc commit 76c1d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redux-core/inc/classes/class-redux-field.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ public static function make_descriptor() {
/**
* Redux_Field constructor.
*
* @param array $field Field array.
* @param array|string|null $field Field array.
* @param string|array|null $value Field values.
* @param null $parent ReduxFramework object pointer.
*
* @throws ReflectionException Comment.
*/
public function __construct( array $field = array(), $value = null, $parent = null ) {
public function __construct( $field = array(), $value = null, $parent = null ) {
$this->parent = $parent;
$this->field = $field;
$this->value = $value;
Expand Down

0 comments on commit 76c1d03

Please sign in to comment.