Plugin Directory

Changeset 2469756


Ignore:
Timestamp:
02/05/2021 07:38:54 PM (5 years ago)
Author:
kevinhaig
Message:

Committing 4.5.1

Location:
testimonial-basics/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • testimonial-basics/trunk/changelog.txt

    r2468940 r2469756  
    22                 Testimonial Basics WordPress Plugin Change Log
    33==========================================================================================
     4
     5= 4.5.1 =
     6- fix syntax error in katb_functions.php line 1016
    47
    58= 4.5.0 =
  • testimonial-basics/trunk/includes/katb-functions.php

    r2468940 r2469756  
    10141014        $katb_tnumber = $wpdb->num_rows;
    10151015    } 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:ignore
     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:ignore
    10171017        $katb_tnumber = $wpdb->num_rows;
    10181018    } 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:ignore
     1019        $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
    10201020        $katb_tnumber = $wpdb->num_rows;
    10211021    } elseif ( 'all' === $group && 'all' !== $number && 'random' === $by ) {
  • testimonial-basics/trunk/readme.txt

    r2468940 r2469756  
    33Donate link: http://kevinsspace.ca/testimonial-basics-wordpress-plugin/
    44Tags: testimonials,ratings,reviews
    5 Requires at least: 5.2
    6 Tested up to: 5.5
    7 Stable tag: 4.5.0
     5Requires at least: 5.3
     6Tested up to: 5.6
     7Stable tag: 4.5.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    3939
    4040== 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
    4643
    4744== Installation ==
  • testimonial-basics/trunk/testimonial-basics.php

    r2468940 r2469756  
    1414 * Plugin URI: https://kevinsspace.ca/testimonial-basics-user-documentation/testimonial-basics-wordpress-plugin/
    1515 * 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.0
     16 * Version: 4.5.1
    1717 * Author: Kevin Archibald
    1818 * Author URI: http://kevinsspace.ca
  • testimonial-basics/trunk/widgets/class-katb-display-testimonial-widget.php

    r2468940 r2469756  
    44 * Plugin URI: http://kevinsspace.ca/testimonial-basics-wordpress-plugin/
    55 * Description: A plugin to display testimonials in a widget
    6  * Version: 4.5.0
     6 * Version: 4.5.1
    77 * Author: Kevin Archibald
    88 * Author URI: http://kevinsspace.ca/
  • testimonial-basics/trunk/widgets/class-katb-input-testimonial-widget.php

    r2468940 r2469756  
    44 * Plugin URI: https://kevinsspace.ca/testimonial-basics-user-documentation/testimonial-basics-wordpress-plugin/
    55 * Description: A plugin to input a testimonial.
    6  * Version: 4.5.0
     6 * Version: 4.5.1
    77 * Author: Kevin Archibald
    88 * Author URI: http://kevinsspace.ca/
Note: See TracChangeset for help on using the changeset viewer.