Plugin Directory

Changeset 2524693


Ignore:
Timestamp:
05/01/2021 07:44:43 PM (5 years ago)
Author:
yehudah
Message:

Fix auto loading require path

Location:
wp-smtp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-smtp/trunk/readme.txt

    r2519558 r2524693  
    66Requires at least: 2.7
    77Tested up to: 5.7.1
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99
    1010WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
     
    3636
    3737== Changelog ==
     38
     39= 1.2.3 =
     40Fix auto loading require path
    3841
    3942= 1.2.2 =
  • wp-smtp/trunk/wp-smtp.php

    r2519558 r2524693  
    55Plugin Name: WP SMTP
    66Description: WP SMTP can help us to send emails via SMTP instead of the PHP mail() function and email logger built-in.
    7 Version: 1.2.2
     7Version: 1.2.3
    88Author: Yehuda Hassine
    99Text Domain: wp-smtp
     
    2424define( 'WPSMTP_ASSETS_URL', WPSMTP_URL . 'assets/' );
    2525
    26 require_once 'vendor/autoload.php';
     26require_once __DIR__ . '/vendor/autoload.php';
    2727
    2828class WP_SMTP {
Note: See TracChangeset for help on using the changeset viewer.