Skip to content

Commit

Permalink
Fixes #4. Fix pre PHP 5.4 error from shorthand array syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
joelworsham committed Feb 13, 2015
1 parent 94fb8d8 commit 6bb8960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function settings_output() {
$this->_settings_ID,
$setting['ID'],
isset( $setting['name'] ) ? $setting['name'] : null,
isset( $setting['atts'] ) ? $setting['atts'] : [ ],
isset( $setting['atts'] ) ? $setting['atts'] : array(),
);

// Select box has extra param
Expand Down

0 comments on commit 6bb8960

Please sign in to comment.