Completed
Push — develop ( bd6ad5...7b688d )
by Zack
04:29
created
includes/fields/class-gravityview-field-payment-status.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 	var $is_searchable = true;
14 14
 
15
-	var $search_operators = array( 'is', 'in', 'not in', 'isnot' );
15
+	var $search_operators = array('is', 'in', 'not in', 'isnot');
16 16
 
17 17
 	var $group = 'pricing';
18 18
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 * GravityView_Field_Date_Created constructor.
23 23
 	 */
24 24
 	public function __construct() {
25
-		$this->label = esc_attr__( 'Payment Status', 'gravityview' );
25
+		$this->label = esc_attr__('Payment Status', 'gravityview');
26 26
 		parent::__construct();
27 27
 	}
28 28
 }
Please login to merge, or discard this patch.
templates/fields/payment_amount.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
 
10 10
 $entry = GravityView_View::getInstance()->getCurrentEntry();
11 11
 
12
-$value = rgar( $entry, 'payment_amount' );
12
+$value = rgar($entry, 'payment_amount');
13 13
 
14
-echo GFCommon::to_money( $value, rgar( $entry, 'currency' ) );
14
+echo GFCommon::to_money($value, rgar($entry, 'currency'));
Please login to merge, or discard this patch.