Completed
Pull Request — master (#553)
by Devin
30:13 queued 13:44
created
includes/shortcodes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
 		//validate display_style and float_labels value
81 81
 		if ( ( $key == 'display_style' && ! in_array( $value, array( 'onpage', 'reveal', 'modal' ) ) )
82
-		     || ( $key == 'float_labels' && ! in_array( $value, array( 'enabled', 'disabled' ) ) )
82
+			 || ( $key == 'float_labels' && ! in_array( $value, array( 'enabled', 'disabled' ) ) )
83 83
 		) {
84 84
 
85 85
 			$atts[ $key ] = '';
Please login to merge, or discard this patch.
includes/template-functions.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Template Functions
4
- *
5
- * @package     Give
6
- * @subpackage  Functions/Templates
7
- * @copyright   Copyright (c) 2015, WordImpress
8
- * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
9
- * @since       1.0
10
- */
3
+	 * Template Functions
4
+	 *
5
+	 * @package     Give
6
+	 * @subpackage  Functions/Templates
7
+	 * @copyright   Copyright (c) 2015, WordImpress
8
+	 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
9
+	 * @since       1.0
10
+	 */
11 11
 
12 12
 // Exit if accessed directly
13 13
 if ( ! defined( 'ABSPATH' ) ) {
Please login to merge, or discard this patch.
includes/class-give-email-access.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Class for allowing donors access to their donation w/o logging in;
4
- *
5
- * Based on the work from Matt Gibbs - https://github.com/FacetWP/edd-no-logins
6
- *
7
- * @package     Give
8
- * @copyright   Copyright (c) 2016, WordImpress
9
- * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
10
- * @since       1.4
11
- */
3
+	 * Class for allowing donors access to their donation w/o logging in;
4
+	 *
5
+	 * Based on the work from Matt Gibbs - https://github.com/FacetWP/edd-no-logins
6
+	 *
7
+	 * @package     Give
8
+	 * @copyright   Copyright (c) 2016, WordImpress
9
+	 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
10
+	 * @since       1.4
11
+	 */
12 12
 
13 13
 defined( 'ABSPATH' ) or exit;
14 14
 
Please login to merge, or discard this patch.
includes/emails/class-give-email-tags.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,26 +1,26 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Give API for creating Email template tags
4
- *
5
- * Email tags are wrapped in { }
6
- *
7
- * A few examples:
8
- *
9
- * {name}
10
- * {sitename}
11
- *
12
- *
13
- * To replace tags in content, use: give_do_email_tags( $content, payment_id );
14
- *
15
- * To add tags, use: give_add_email_tag( $tag, $description, $func ). Be sure to wrap give_add_email_tag()
16
- * in a function hooked to the 'give_email_tags' action
17
- *
18
- * @package     Give
19
- * @subpackage  Emails
20
- * @copyright   Copyright (c) 2016, WordImpress
21
- * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
22
- * @since       1.0
23
- */
3
+	 * Give API for creating Email template tags
4
+	 *
5
+	 * Email tags are wrapped in { }
6
+	 *
7
+	 * A few examples:
8
+	 *
9
+	 * {name}
10
+	 * {sitename}
11
+	 *
12
+	 *
13
+	 * To replace tags in content, use: give_do_email_tags( $content, payment_id );
14
+	 *
15
+	 * To add tags, use: give_add_email_tag( $tag, $description, $func ). Be sure to wrap give_add_email_tag()
16
+	 * in a function hooked to the 'give_email_tags' action
17
+	 *
18
+	 * @package     Give
19
+	 * @subpackage  Emails
20
+	 * @copyright   Copyright (c) 2016, WordImpress
21
+	 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
22
+	 * @since       1.0
23
+	 */
24 24
 
25 25
 // Exit if accessed directly
26 26
 if ( ! defined( 'ABSPATH' ) ) {
Please login to merge, or discard this patch.