Changeset 2469756
- Timestamp:
- 02/05/2021 07:38:54 PM (5 years ago)
- Location:
- testimonial-basics/trunk
- Files:
-
- 6 edited
-
changelog.txt (modified) (1 diff)
-
includes/katb-functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
testimonial-basics.php (modified) (1 diff)
-
widgets/class-katb-display-testimonial-widget.php (modified) (1 diff)
-
widgets/class-katb-input-testimonial-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
testimonial-basics/trunk/changelog.txt
r2468940 r2469756 2 2 Testimonial Basics WordPress Plugin Change Log 3 3 ========================================================================================== 4 5 = 4.5.1 = 6 - fix syntax error in katb_functions.php line 1016 4 7 5 8 = 4.5.0 = -
testimonial-basics/trunk/includes/katb-functions.php
r2468940 r2469756 1014 1014 $katb_tnumber = $wpdb->num_rows; 1015 1015 } elseif ( 'all' === $group && 'all' !== $number && 'date' === $by ) { 1016 $katb_tdata = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM `$tablename` WHERE `tb_approved` = %s ORDER BY `tb_date` DESC LIMIT 0,$number", '1' ,), ARRAY_A );// phpcs:ignore1016 $katb_tdata = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM `$tablename` WHERE `tb_approved` = %s ORDER BY `tb_date` DESC LIMIT 0,$number", '1' ), ARRAY_A );// phpcs:ignore 1017 1017 $katb_tnumber = $wpdb->num_rows; 1018 1018 } elseif ( 'all' === $group && 'all' !== $number && 'order' === $by ) { 1019 $katb_tdata = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM `$tablename` WHERE `tb_approved` = %s ORDER BY `tb_order` = '0',`tb_order` ASC LIMIT 0,$number", '1' ), ARRAY_A );// phpcs:ignore1019 $katb_tdata = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM `$tablename` WHERE `tb_approved` = %s ORDER BY `tb_order` = %s,`tb_order` ASC LIMIT 0,$number", '1', '0' ), ARRAY_A );// phpcs:ignore 1020 1020 $katb_tnumber = $wpdb->num_rows; 1021 1021 } elseif ( 'all' === $group && 'all' !== $number && 'random' === $by ) { -
testimonial-basics/trunk/readme.txt
r2468940 r2469756 3 3 Donate link: http://kevinsspace.ca/testimonial-basics-wordpress-plugin/ 4 4 Tags: testimonials,ratings,reviews 5 Requires at least: 5. 26 Tested up to: 5. 57 Stable tag: 4.5. 05 Requires at least: 5.3 6 Tested up to: 5.6 7 Stable tag: 4.5.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html … … 39 39 40 40 == Upgrade Notice == 41 * 4.5.0 42 * adjusted paragraph top margins from 0 to 5px 43 * code cleanup to adjusted phpcs standards 44 * modified database queries 45 * removed README.MD, will use reeadme.txt in GitHub from now on 41 * 4.5.1 42 * fix syntax error in katb_functions.php line 1016 46 43 47 44 == Installation == -
testimonial-basics/trunk/testimonial-basics.php
r2468940 r2469756 14 14 * Plugin URI: https://kevinsspace.ca/testimonial-basics-user-documentation/testimonial-basics-wordpress-plugin/ 15 15 * Description: This plugin provides complete comprehensive management of customer testimonials. The user can set up an input form in a page or in a widget, and display all or selected testimonials in a page or a widget. The plug in is very easy to use and modify. 16 * Version: 4.5. 016 * Version: 4.5.1 17 17 * Author: Kevin Archibald 18 18 * Author URI: http://kevinsspace.ca -
testimonial-basics/trunk/widgets/class-katb-display-testimonial-widget.php
r2468940 r2469756 4 4 * Plugin URI: http://kevinsspace.ca/testimonial-basics-wordpress-plugin/ 5 5 * Description: A plugin to display testimonials in a widget 6 * Version: 4.5. 06 * Version: 4.5.1 7 7 * Author: Kevin Archibald 8 8 * Author URI: http://kevinsspace.ca/ -
testimonial-basics/trunk/widgets/class-katb-input-testimonial-widget.php
r2468940 r2469756 4 4 * Plugin URI: https://kevinsspace.ca/testimonial-basics-user-documentation/testimonial-basics-wordpress-plugin/ 5 5 * Description: A plugin to input a testimonial. 6 * Version: 4.5. 06 * Version: 4.5.1 7 7 * Author: Kevin Archibald 8 8 * Author URI: http://kevinsspace.ca/
Note: See TracChangeset
for help on using the changeset viewer.