Skip to content

Commit

Permalink
git subrepo pull --branch=master ui
Browse files Browse the repository at this point in the history
subrepo:
  subdir:   "ui"
  merged:   "a466931"
upstream:
  origin:   "git@github.com:crowdfavorite/wp-capsule-ui.git"
  branch:   "master"
  commit:   "a466931"
git-subrepo:
  version:  "0.4.0"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "74339e8"
  • Loading branch information
cristirusu committed Mar 13, 2018
1 parent b2d0a88 commit 695f376
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ui/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = git@github.com:crowdfavorite/wp-capsule-ui.git
branch = master
commit = 266410fdd6d76ac207cbd0d806c036b34282ec95
parent = 0a41b65c7f1d7d2d73795c7659fd590a2c7c34ac
commit = a4669319483c55898f18093277389f74f1092a50
parent = b2d0a88c21de9d3b7b8dfc58cd4a6d5ad4379b1c
method = merge
cmdver = 0.4.0
2 changes: 1 addition & 1 deletion ui/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package capsule
*/

define( 'CAPSULE_URL_VERSION', '2.3' );
define( 'CAPSULE_URL_VERSION', '2.4' );
define( 'CAPSULE_TAX_PREFIX_PROJECT', '@' );
define( 'CAPSULE_TAX_PREFIX_TAG', '#' );
define( 'CAPSULE_TAX_PREFIX_CODE', '`' );
Expand Down
4 changes: 2 additions & 2 deletions ui/lib/wp-taxonomy-filter/class-cf-taxonomy-filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function( $elem ) {
$multiple = ( $args['multiple'] ) ? 'multiple' : '';
// Build the select form element.
?>
<select name="<?php echo esc_attr( 'cfct_tax[' . $taxonomy . '][]' ); ?>" <?php echo wp_kses( self::build_attrib_string( $args ), array() ); ?> <?php echo esc_attr( $multiple ); ?> />
<select name="<?php echo esc_attr( 'cfct_tax[' . $taxonomy . '][]' ); ?>" <?php echo wp_kses( self::build_attrib_string( $args ), array() ); ?> <?php echo esc_attr( $multiple ); ?>>
<!-- Empty option for single select removal for Chosen. -->
<option value=""></option>
<?php foreach ( $terms as $term ) : ?>
Expand Down Expand Up @@ -213,7 +213,7 @@ public static function author_select( $args = array() ) {
}
$multiple = ( $args['multiple'] ) ? 'multiple' : '';
?>
<select name="cftf_authors[]" <?php echo wp_kses( self::build_attrib_string( $args ), array() ); ?> <?php echo esc_attr( $multiple ); ?> />
<select name="cftf_authors[]" <?php echo wp_kses( self::build_attrib_string( $args ), array() ); ?> <?php echo esc_attr( $multiple ); ?>>
<!-- Empty option for single select removal support. -->
<option value=""></option>
<?php foreach ( $users as $user ) : ?>
Expand Down

0 comments on commit 695f376

Please sign in to comment.