Skip to content

Commit

Permalink
fixes #1423
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Jun 25, 2017
1 parent 030dc14 commit f41f7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/css/field/class-kirki-output-field-typography.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function process_output( $output, $value ) {
);

foreach ( $properties as $property ) {
if ( ! isset( $value[ $property ] ) || '' === $value[ $property ] ) {
if ( ! isset( $value[ $property ] ) || ! $value[ $property ] ) {
continue;
}
if ( isset( $output['choice'] ) && $output['choice'] !== $property ) {
Expand Down

0 comments on commit f41f7d2

Please sign in to comment.