Plugin Directory

Changeset 2760932


Ignore:
Timestamp:
07/25/2022 03:52:14 AM (3 years ago)
Author:
daomapsieucap
Message:

Update to version 2.0.10 from GitHub

Location:
fiber-admin
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fiber-admin/tags/2.0.10/changelog.txt

    r2745323 r2760932  
    11== Changelog ==
     2
     3= 2.0.10 =
     4*Release Date - 25 July 2022*
     5
     6* Fixed: Fix issue showing error in custom taxonomies when option Custom Taxonomy Order is not enabled.
    27
    38= 2.0.9 =
  • fiber-admin/tags/2.0.10/fiberadmin.php

    r2745323 r2760932  
    44 * Plugin URI:        https://wordpress.org/plugins/fiber-admin/
    55 * Description:       💈 Bring multiple customization features to make your own WordPress admin.
    6  * Version:           2.0.9
     6 * Version:           2.0.10
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.0
     
    2626 */
    2727
    28 const FIBERADMIN_VERSION  = '2.0.9';
     28if(!function_exists('get_plugin_data')){
     29    require_once(ABSPATH . 'wp-admin/includes/plugin.php');
     30}
     31$plugin_data = get_plugin_data(__FILE__);
     32
     33define("FIBERADMIN_VERSION", $plugin_data['Version']);
    2934const FIBERADMIN_DEV_MODE = false;
    3035const FIBERADMIN_FILENAME = __FILE__;
  • fiber-admin/tags/2.0.10/includes/cpo.php

    r2745323 r2760932  
    224224   
    225225    public function fiad_cpo_create_term_order($term_id, $tt_id, $taxonomy){
     226        if(!fiad_get_cpo_option('taxonomies')){
     227            return false;
     228        }
     229       
    226230        global $wpdb;
    227231       
     
    246250            $wpdb->update($wpdb->terms, array('term_order' => $order_start + 1), array('term_id' => $term_id));
    247251        }
     252       
     253        return false;
    248254    }
    249255}
  • fiber-admin/tags/2.0.10/readme.txt

    r2745323 r2760932  
    33Tags: white label, admin tool, duplicate post, content protection
    44Requires at least: 4.7
    5 Tested up to: 5.9.3
     5Tested up to: 6.0.1
    66Requires PHP: 7.0
    7 Stable tag: 2.0.9
     7Stable tag: 2.0.10
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848
    49 = 2.0.9 =
    50 *Release Date - 20 June 2022*
     49= 2.0.10 =
     50*Release Date - 25 July 2022*
    5151
    52 * Fixed: Missing `stripslashes` when displaying DB Error message.
    53 * Fixed: Fix issue custom term order not working when creating new item.
     52* Fixed: Fix issue showing error in custom taxonomies when option Custom Taxonomy Order is not enabled.
  • fiber-admin/trunk/changelog.txt

    r2745323 r2760932  
    11== Changelog ==
     2
     3= 2.0.10 =
     4*Release Date - 25 July 2022*
     5
     6* Fixed: Fix issue showing error in custom taxonomies when option Custom Taxonomy Order is not enabled.
    27
    38= 2.0.9 =
  • fiber-admin/trunk/fiberadmin.php

    r2745323 r2760932  
    44 * Plugin URI:        https://wordpress.org/plugins/fiber-admin/
    55 * Description:       💈 Bring multiple customization features to make your own WordPress admin.
    6  * Version:           2.0.9
     6 * Version:           2.0.10
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.0
     
    2626 */
    2727
    28 const FIBERADMIN_VERSION  = '2.0.9';
     28if(!function_exists('get_plugin_data')){
     29    require_once(ABSPATH . 'wp-admin/includes/plugin.php');
     30}
     31$plugin_data = get_plugin_data(__FILE__);
     32
     33define("FIBERADMIN_VERSION", $plugin_data['Version']);
    2934const FIBERADMIN_DEV_MODE = false;
    3035const FIBERADMIN_FILENAME = __FILE__;
  • fiber-admin/trunk/includes/cpo.php

    r2745323 r2760932  
    224224   
    225225    public function fiad_cpo_create_term_order($term_id, $tt_id, $taxonomy){
     226        if(!fiad_get_cpo_option('taxonomies')){
     227            return false;
     228        }
     229       
    226230        global $wpdb;
    227231       
     
    246250            $wpdb->update($wpdb->terms, array('term_order' => $order_start + 1), array('term_id' => $term_id));
    247251        }
     252       
     253        return false;
    248254    }
    249255}
  • fiber-admin/trunk/readme.txt

    r2745323 r2760932  
    33Tags: white label, admin tool, duplicate post, content protection
    44Requires at least: 4.7
    5 Tested up to: 5.9.3
     5Tested up to: 6.0.1
    66Requires PHP: 7.0
    7 Stable tag: 2.0.9
     7Stable tag: 2.0.10
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848
    49 = 2.0.9 =
    50 *Release Date - 20 June 2022*
     49= 2.0.10 =
     50*Release Date - 25 July 2022*
    5151
    52 * Fixed: Missing `stripslashes` when displaying DB Error message.
    53 * Fixed: Fix issue custom term order not working when creating new item.
     52* Fixed: Fix issue showing error in custom taxonomies when option Custom Taxonomy Order is not enabled.
Note: See TracChangeset for help on using the changeset viewer.