Plugin Directory

Changeset 2885751


Ignore:
Timestamp:
03/23/2023 03:14:28 PM (3 years ago)
Author:
mailcamp
Message:

fixed PHP 8.1 notice and warning

Location:
mailcamp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mailcamp/trunk/README.txt

    r2789211 r2885751  
    55Requires at least: 4.9.1
    66Tested up to: 6.0.2
    7 Stable tag: 1.5.6
     7Stable tag: 1.5.7
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2222This section describes how to install the plugin and get started using it.
    2323
    24 = Version 1.5.6 =
     24= Version 1.5.7 =
    25251. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    26262. Activate the plugin through the **Plugins** menu in WordPress
     
    3131
    3232== Changelog ==
     33
     34== 1.5.7 ==
     35* bugfix - fixed PHP 8.1 notice and warning
    3336
    3437== 1.5.6 ==
  • mailcamp/trunk/includes/class-mailcamp-api.php

    r2615637 r2885751  
    136136     *
    137137     * @since 1.0.0
     138     * @updated 1.5.7
    138139     * @param string $to_email
    139140     * @param $from_details
     
    141142     * @return mixed
    142143     */
    143     public function mail( $to_email = '', $from_details, $html ) {
     144    public function mail( $to_email = '', $from_details = [], $html = '' ) {
    144145
    145146        $this->xml_data = '
     
    299300     *
    300301     * @since 1.0.0
    301      */
    302     final private function execute() {
     302     * @updated 1.5.7
     303     */
     304    private function execute() {
    303305        $this->result->status = false;
    304306        $this->result->data   = '';
  • mailcamp/trunk/mailcamp.php

    r2789211 r2885751  
    3333 * Rename this for your plugin and update it as you release new versions.
    3434 */
    35 define('MAILCAMP_VERSION', '1.5.6');
     35define('MAILCAMP_VERSION', '1.5.7');
    3636/**
    3737 * The code that runs during plugin activation.
  • mailcamp/trunk/readme.md

    r2789211 r2885751  
    55Requires at least: 4.9.1
    66Tested up to: 6.0.2
    7 Stable tag: 1.5.6
     7Stable tag: 1.5.7
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2121This section describes how to install the plugin and get started using it.
    2222
    23 = Version 1.5.6 =
     23= Version 1.5.7 =
    24241. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    25252. Activate the plugin through the **Plugins** menu in WordPress
     
    3030
    3131## Changelog ##
     32
     33== 1.5.7 ==
     34* bugfix - fixed PHP 8.1 notice and warning
    3235
    3336== 1.5.6 ==
Note: See TracChangeset for help on using the changeset viewer.