Plugin Directory

Changeset 2798020


Ignore:
Timestamp:
10/12/2022 10:31:28 PM (3 years ago)
Author:
tlago
Message:

twp-email version 1.3.6

Location:
twp-email
Files:
10 added
5 edited

Legend:

Unmodified
Added
Removed
  • twp-email/tags/1.3.5/adm/email.php

    r2793645 r2798020  
    5757  <div class="twpmailsetup">
    5858    <label class="twplabel"><?php echo __("Password","twpeditor") ?>:</label>
    59     <input type="text" name="password" placeholder="*********" maxlength="25" required>
     59    <input type="password" name="password" placeholder="*********" maxlength="25" required>
    6060  </div>
    6161  <div class="twpmailsetup">
  • twp-email/tags/1.3.5/twp-email.php

    r2793645 r2798020  
    2121if(!function_exists('twped_csm')){
    2222  function twped_csm($slug){
    23     global $submenu;if($submenu['twp_editor']){foreach($submenu['twp_editor'] as $subm){if($subm[2]==$slug)return 1;}}
     23    global $submenu;if(isset($submenu['twp_editor'])){foreach($submenu['twp_editor'] as $subm){if($subm[2]==$slug)return 1;}}
    2424  }
    2525}
  • twp-email/trunk/adm/email.php

    r2793645 r2798020  
    5757  <div class="twpmailsetup">
    5858    <label class="twplabel"><?php echo __("Password","twpeditor") ?>:</label>
    59     <input type="text" name="password" placeholder="*********" maxlength="25" required>
     59    <input type="password" name="password" placeholder="*********" maxlength="25" required>
    6060  </div>
    6161  <div class="twpmailsetup">
  • twp-email/trunk/readme.txt

    r2793645 r2798020  
    55Requires at least: 5.5
    66Tested up to: 6.0.2
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • twp-email/trunk/twp-email.php

    r2793645 r2798020  
    55  Author: Tiago Anastácio
    66  Author URI: ittca.eu
    7   Version: 1.3.5
     7  Version: 1.3.6
    88  Tags: twp, email, smtp
    99  Requires at least: 5.5
     
    1414*/
    1515if(!defined('ABSPATH'))exit;
    16 define('TWPemailV',"1.3.5");
     16define('TWPemailV',"1.3.6");
    1717if(!function_exists('twpEmailFiles')){
    1818  function twpEmailFiles() {wp_enqueue_style('twpe_style', plugins_url('style.css',__FILE__ ));}
     
    2121if(!function_exists('twped_csm')){
    2222  function twped_csm($slug){
    23     global $submenu;if($submenu['twp_editor']){foreach($submenu['twp_editor'] as $subm){if($subm[2]==$slug)return 1;}}
     23    global $submenu;if(isset($submenu['twp_editor'])){foreach($submenu['twp_editor'] as $subm){if($subm[2]==$slug)return 1;}}
    2424  }
    2525}
Note: See TracChangeset for help on using the changeset viewer.