Changeset 2885751
- Timestamp:
- 03/23/2023 03:14:28 PM (3 years ago)
- Location:
- mailcamp/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
includes/class-mailcamp-api.php (modified) (3 diffs)
-
mailcamp.php (modified) (1 diff)
-
readme.md (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailcamp/trunk/README.txt
r2789211 r2885751 5 5 Requires at least: 4.9.1 6 6 Tested up to: 6.0.2 7 Stable tag: 1.5. 67 Stable tag: 1.5.7 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 22 22 This section describes how to install the plugin and get started using it. 23 23 24 = Version 1.5. 6=24 = Version 1.5.7 = 25 25 1. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory` 26 26 2. Activate the plugin through the **Plugins** menu in WordPress … … 31 31 32 32 == Changelog == 33 34 == 1.5.7 == 35 * bugfix - fixed PHP 8.1 notice and warning 33 36 34 37 == 1.5.6 == -
mailcamp/trunk/includes/class-mailcamp-api.php
r2615637 r2885751 136 136 * 137 137 * @since 1.0.0 138 * @updated 1.5.7 138 139 * @param string $to_email 139 140 * @param $from_details … … 141 142 * @return mixed 142 143 */ 143 public function mail( $to_email = '', $from_details , $html) {144 public function mail( $to_email = '', $from_details = [], $html = '' ) { 144 145 145 146 $this->xml_data = ' … … 299 300 * 300 301 * @since 1.0.0 301 */ 302 final private function execute() { 302 * @updated 1.5.7 303 */ 304 private function execute() { 303 305 $this->result->status = false; 304 306 $this->result->data = ''; -
mailcamp/trunk/mailcamp.php
r2789211 r2885751 33 33 * Rename this for your plugin and update it as you release new versions. 34 34 */ 35 define('MAILCAMP_VERSION', '1.5. 6');35 define('MAILCAMP_VERSION', '1.5.7'); 36 36 /** 37 37 * The code that runs during plugin activation. -
mailcamp/trunk/readme.md
r2789211 r2885751 5 5 Requires at least: 4.9.1 6 6 Tested up to: 6.0.2 7 Stable tag: 1.5. 67 Stable tag: 1.5.7 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 21 21 This section describes how to install the plugin and get started using it. 22 22 23 = Version 1.5. 6=23 = Version 1.5.7 = 24 24 1. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory` 25 25 2. Activate the plugin through the **Plugins** menu in WordPress … … 30 30 31 31 ## Changelog ## 32 33 == 1.5.7 == 34 * bugfix - fixed PHP 8.1 notice and warning 32 35 33 36 == 1.5.6 ==
Note: See TracChangeset
for help on using the changeset viewer.