Skip to content

Commit

Permalink
[+] Fixed select component comprison string and number id
Browse files Browse the repository at this point in the history
[+] Fix recursive checkFieldError - Version bump to 3.0.9
  • Loading branch information
Lorenzo Girardi committed Oct 16, 2019
1 parent 6fe354f commit 1f6967e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Aeria/Aeria.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
class Aeria extends Container
{
public const VERSION = '3.0.8';
public const VERSION = '3.0.9';
/**
* Constructs the Aeria container
*
Expand Down
2 changes: 1 addition & 1 deletion Aeria/Field/Fields/TermsField.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct($parent_key, $config, $sections, $index = null) {
$this->config['type'] = 'select';

$taxonomy = (isset($config['taxonomy'])) ? $config['taxonomy'] : 'category';
$hide_empty = (isset($config['hide_empty'])) ? $config['hide_emty'] : true;
$hide_empty = (isset($config['hide_empty'])) ? $config['hide_empty'] : true;

$terms = get_terms(array(
'taxonomy' => $taxonomy,
Expand Down
2 changes: 1 addition & 1 deletion aeria.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Aeria
* Plugin URI: https://github.com/caffeinalab/aeria
* Description: Aeria is a modular, lightweight, fast WordPress Application development kit.
* Version: 3.0.8
* Version: 3.0.9
* Author: Caffeina
* Author URI: https://caffeina.com
* Text Domain: aeria
Expand Down
18 changes: 9 additions & 9 deletions assets/js/aeria-editor.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions assets/js/aeria.js

Large diffs are not rendered by default.

0 comments on commit 1f6967e

Please sign in to comment.