Completed
Push — master ( 7d6f01...eee682 )
by Stephanie
04:08
created
classes/controllers/FrmAddonsController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -93,6 +93,9 @@
 block discarded – undo
93 93
 		wp_die();
94 94
 	}
95 95
 
96
+	/**
97
+	 * @param string $url
98
+	 */
96 99
 	private static function send_api_request( $url, $transient = array() ) {
97 100
 		$data = get_transient( $transient['name'] );
98 101
 		if ( $data !== false ) {
Please login to merge, or discard this patch.
classes/views/addons/upgrade_to_pro.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 			<tr>
17 17
 				<th></th>
18 18
 			<?php foreach ( $pro['pricing'] as $name => $price ) {
19
-				$price_id++;
19
+				$price_id ++;
20 20
 				$the_id = ( $price_id < 3 ) ? ( $price_id + 4 ) : $price_id;
21 21
 				if ( $name == 'smallbusiness' ) {
22 22
 					$name = 'Small Business';
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 			<tr>
62 62
 				<th>Included AddOns</th>
63 63
 				<td>None</td>
64
-				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url('https://formidablepro.com/pricing/#addon-lists') ) ?>" target="_blank">Premium Addons</a></td>
65
-				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url('https://formidablepro.com/pricing/#addon-lists') ) ?>" target="_blank">Advanced Addons</a></td>
66
-				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url('https://formidablepro.com/pricing/#addon-lists') ) ?>" target="_blank">Enterprise Addons</a></td>
64
+				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/pricing/#addon-lists' ) ) ?>" target="_blank">Premium Addons</a></td>
65
+				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/pricing/#addon-lists' ) ) ?>" target="_blank">Advanced Addons</a></td>
66
+				<td><a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/pricing/#addon-lists' ) ) ?>" target="_blank">Enterprise Addons</a></td>
67 67
 			</tr>
68 68
 		</tbody>
69 69
 	</table>
Please login to merge, or discard this patch.