Skip to content

Commit

Permalink
Merge branch '2.x' into feature/#3967
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark committed Mar 2, 2017
2 parents c5031ae + 4403976 commit d7ccf55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ function pods_shortcode ( $tags, $content = null ) {
$return = '';

if ( !file_exists( $tags[ 'view' ] ) ) {
$return = pods_view( $tags[ 'view' ], null, (int) $tags[ 'expires' ], $tags[ 'cache_mode' ] );
$return = pods_view( $tags[ 'view' ], null, (int) $tags[ 'expires' ], $tags[ 'cache_mode' ], true );

if ( $tags[ 'shortcodes' ] && defined( 'PODS_SHORTCODE_ALLOW_SUB_SHORTCODES' ) && PODS_SHORTCODE_ALLOW_SUB_SHORTCODES ) {
$return = do_shortcode( $return );
Expand Down
2 changes: 1 addition & 1 deletion ui/fields/currency.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
if ( isset( PodsField_Currency::$currencies[ pods_var( 'currency_format_sign', $options, -1 ) ] ) )
$currency = pods_var( 'currency_format_sign', $options );

$currency_sign = PodsField_Currency::$currencies[ $currency ];
$currency_sign = PodsField_Currency::$currencies[ $currency ]['sign'];
?>
<input<?php PodsForm::attributes( $attributes, $name, $form_field_type, $options ); ?>/>
<script>
Expand Down

0 comments on commit d7ccf55

Please sign in to comment.