Plugin Directory

Changeset 2333765


Ignore:
Timestamp:
07/01/2020 08:47:04 PM (6 years ago)
Author:
organicthemes
Message:

Organic Widget Area Block: Changed sleep() and wakeup() functions to public

Location:
organic-widget-area-block
Files:
40 added
3 edited

Legend:

Unmodified
Added
Removed
  • organic-widget-area-block/trunk/README.txt

    r2274142 r2333765  
    33Donate link: https://organicthemes.com/builder
    44Tags: gutenberg, blocks, block, block editor, widget area, widgets, traditional widgets
    5 Stable tag: 1.1
     5Stable tag: 1.1.1
    66Requires at least: 5.0
    77Tested up to: 5.4
     
    5252== Changelog ==
    5353
     54= 1.1.1 =
     55* Changed __sleep() and __wakeup() functions to public
     56
    5457= 1.1 =
    5558* Allow for Widget Area Block to be nested inside other blocks
  • organic-widget-area-block/trunk/organic-widget-area.php

    r2240623 r2333765  
    44 * Plugin URI: https://organicthemes.com/builder
    55 * Description: A custom block for adding multiple traditional widget areas within the Gutenberg block editor.
    6  * Version: 1.1
     6 * Version: 1.1.1
    77 * Author: Organic Themes
    88 * Author URI: https://organicthemes.com
     
    5252     * @var      string
    5353     */
    54     private $plugin_version = '1.1';
     54    private $plugin_version = '1.1.1';
    5555
    5656    /**
  • organic-widget-area-block/trunk/src/boot.php

    r2052825 r2333765  
    357357     */
    358358
    359     private function __sleep() {
     359    public function __sleep() {
    360360
    361361    }
     
    373373     */
    374374
    375     private function __wakeup() {
     375    public function __wakeup() {
    376376
    377377
Note: See TracChangeset for help on using the changeset viewer.