Changeset 2786677
- Timestamp:
- 09/18/2022 11:48:17 PM (4 years ago)
- Location:
- twp-email
- Files:
-
- 10 added
- 5 edited
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
tags/1.3.4 (added)
-
tags/1.3.4/adm (added)
-
tags/1.3.4/adm/about.php (added)
-
tags/1.3.4/adm/abouttwp.php (added)
-
tags/1.3.4/adm/email.php (added)
-
tags/1.3.4/adm/index.php (added)
-
tags/1.3.4/index.php (added)
-
tags/1.3.4/readme.txt (added)
-
tags/1.3.4/style.css (added)
-
tags/1.3.4/twp-email.php (added)
-
trunk/adm/email.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/twp-email.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twp-email/trunk/adm/email.php
r2783559 r2786677 11 11 $chck = $wpdb->query('select id from '.$wpdb->prefix.'twpEmail where id = 1'); 12 12 if(!$chck){ 13 $wpdb->query('create table if not exists '.$wpdb->prefix.'twpEmail (id tinyint, email varchar( 30), pass varchar(30), fromname varchar(30), host varchar(30), port int, secure varchar(10), b varchar(15), c varchar(15), d tinyint)');13 $wpdb->query('create table if not exists '.$wpdb->prefix.'twpEmail (id tinyint, email varchar(55), pass varchar(30), fromname varchar(30), host varchar(30), port int, secure varchar(10), b varchar(15), c varchar(15), d tinyint)'); 14 14 $wpdb->query($wpdb->prepare("insert into ".$wpdb->prefix."twpEmail values(%f,%s,%s,%s,%s,%f,%s,%s,%s,%f)",1,"","","","",587,"","AES-128-ECB","TwP3m41l!%%$",0)); 15 15 } … … 58 58 <div class="twpmailsetup"> 59 59 <label class="twplabel"><?php echo __("Email","twpeditor") ?></label> 60 <input type="email" name="email" value="<?php echo esc_attr($result[0]->email) ?>" maxlength=" 25" required>60 <input type="email" name="email" value="<?php echo esc_attr($result[0]->email) ?>" maxlength="50" required> 61 61 </div> 62 62 <div class="twpmailsetup"> -
twp-email/trunk/readme.txt
r2783559 r2786677 5 5 Requires at least: 5.5 6 6 Tested up to: 6.0.2 7 Stable tag: 1.3. 37 Stable tag: 1.3.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later -
twp-email/trunk/twp-email.php
r2783559 r2786677 5 5 Author: Tiago Anastácio 6 6 Author URI: ittca.eu 7 Version: 1.3. 37 Version: 1.3.4 8 8 Tags: twp, email, smtp 9 9 Requires at least: 5.5 … … 14 14 */ 15 15 if(!defined('ABSPATH'))exit; 16 define('TWPemailV',"1.3. 3");16 define('TWPemailV',"1.3.4"); 17 17 if(!function_exists('twpEmailFiles')){ 18 18 function twpEmailFiles() {wp_enqueue_style('twpe_style', plugins_url('style.css',__FILE__ ));}
Note: See TracChangeset
for help on using the changeset viewer.