Changeset 3238170
- Timestamp:
- 02/10/2025 08:22:10 PM (13 months ago)
- Location:
- payment-forms-for-paystack/trunk
- Files:
-
- 3 edited
-
includes/classes/class-helpers.php (modified) (3 diffs)
-
paystack-forms.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payment-forms-for-paystack/trunk/includes/classes/class-helpers.php
r3210130 r3238170 190 190 if ( version_compare( '6.2', $current_version, '<=' ) ) { 191 191 192 // Make sure $order only handles 2 possible values. 193 if ( 'ASC' !== $order ) { 194 $order = 'DESC'; 195 } 196 192 197 // phpcs:disable WordPress.DB -- Start ignoring 193 198 $results = $wpdb->get_results( … … 201 206 $form_id, 202 207 $args['paid'], 203 $args['orderby'] ,208 $args['orderby'] 204 209 ) 205 210 ); … … 215 220 WHERE post_id = '%d' 216 221 AND paid = '%s' 217 ORDER BY '%s' $order",222 ORDER BY '%s' %s", 218 223 $table, 219 224 $form_id, 220 225 $args['paid'], 221 226 $args['orderby'], 227 $order 222 228 ) 223 229 ); -
payment-forms-for-paystack/trunk/paystack-forms.php
r3210130 r3238170 4 4 Plugin URI: https://github.com/PaystackHQ/Wordpress-Payment-forms-for-Paystack 5 5 Description: Payment Forms for Paystack allows you create forms that will be used to bill clients for goods and services via Paystack. 6 Version: 4.0. 16 Version: 4.0.2 7 7 Author: Paystack 8 8 Author URI: http://paystack.com … … 17 17 define( 'PFF_PAYSTACK_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 18 18 define( 'PFF_PAYSTACK_MAIN_FILE', __FILE__ ); 19 define( 'PFF_PAYSTACK_VERSION', '4.0. 1' );19 define( 'PFF_PAYSTACK_VERSION', '4.0.2' ); 20 20 define( 'PFF_PAYSTACK_TABLE', 'paystack_forms_payments' ); 21 21 define( 'PFF_PLUGIN_BASENAME', plugin_basename(__FILE__) ); -
payment-forms-for-paystack/trunk/readme.txt
r3210130 r3238170 5 5 Requires at least: 5.0 6 6 Tested up to: 6.7 7 Stable tag: 4.0. 17 Stable tag: 4.0.2 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 92 92 93 93 == Changelog == 94 = 4.0.2 = 95 * Security Update - Adding in sanitization to the Payments List order variable. 96 94 97 = 4.0.1 = 95 98 * Updating the class initiation to be 7.4 compatible and additional 7.4 fixes
Note: See TracChangeset
for help on using the changeset viewer.