Plugin Directory

Changeset 2336436


Ignore:
Timestamp:
07/07/2020 04:36:57 AM (6 years ago)
Author:
poshtibancom
Message:

Fix section abstract loading

Location:
poshtiban/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • poshtiban/trunk/includes/Main.php

    r2335914 r2336436  
    2727     * @var string
    2828     */
    29     public static $version = '2.3.2';
     29    public static $version = '2.3.3';
    3030
    3131    /**
  • poshtiban/trunk/includes/Options/Options.php

    r2335914 r2336436  
    5050        }*/
    5151        $sections = $this->getDirFiles(Bootstrap::$path . 'includes/Options/Sections');
     52        require_once Bootstrap::$path . 'includes/Options/Sections/SectionsAbstract.php';
    5253        foreach ( $sections as $section ) {
    53             include_once $section;
     54            if ( $section != Bootstrap::$path . 'includes/Options/Sections/SectionsAbstract.php' ) {
     55                include_once $section;
     56            }
    5457        }
    5558
  • poshtiban/trunk/poshtiban.php

    r2335914 r2336436  
    55Description: Poshtiban official wordpress plugin
    66Author: Poshtiban development team
    7 Version: 2.3.2
     7Version: 2.3.3
    88Author URI: https://poshtiban.com/
    99Text Domain: poshtiban
  • poshtiban/trunk/readme.txt

    r2335914 r2336436  
    4141
    4242= 2.3.2 =
    43 
    4443* Add force download option to woocommerce settings
    4544* Activate debug mode for admins only
     
    5049
    5150= 2.3.0 =
    52 
    5351* Add debug mode
    5452* Add support of empty permalink for webhook url
     
    5856
    5957= 2.2.0 =
    60 
    6158* Add new image sizes if the were not exists when file uploaded
    6259
    6360
    6461= 2.1.0 =
    65 
    6662* Add resend button for remote uploads
    6763* Add admin notice for webhook url problems
     
    7066
    7167= 2.0.0 =
    72 
    7368* Add import and export
    7469* Replace Flowjs with uppy
     
    7873
    7974= 1.3.0 =
    80 
    8175* Add `poshtiban_show_download_template` filter
    8276* Add `poshtiban_downloads_template` action
     
    8579
    8680= 1.2.0 =
    87 
    8881* Remove woocommerce settings tabs if woocommerce plugin is not installed
    8982* Fix secure download link generator for woocommrce
Note: See TracChangeset for help on using the changeset viewer.