Changeset 1673938
- Timestamp:
- 06/08/2017 10:58:49 PM (9 years ago)
- Location:
- wp-support-centre/trunk
- Files:
-
- 4 edited
-
imap/imap.php (modified) (1 diff)
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-support-centre.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-support-centre/trunk/imap/imap.php
r1673828 r1673938 187 187 switch( $part->type ) { 188 188 case 0: // the HTML or plain text part of the email 189 $message .= getPart( $imap, $email_id, $partno, $part->encoding ) . '<br /><br />'; 189 if ( $part->subtype == 'HTML' ) { 190 $message = getPart( $imap, $email_id, $partno, $part->encoding ); 191 } else { 192 $message .= getPart( $imap, $email_id, $partno, $part->encoding ) . '<br /><br />'; 193 } 190 194 break; 191 195 case 1: // multi-part headers, can ignore -
wp-support-centre/trunk/includes/functions.php
r1673221 r1673938 567 567 case 0: // the HTML or plain text part of the email 568 568 $message = getPart( $imap, $transient['email_id'], $partno, $part->encoding ); 569 $transient['message'] .= $message . '<br /><br />'; 569 if ( $part->subtype == 'HTML' ) { 570 $transient['message'] = $message; 571 } else { 572 $transient['message'] .= $message . '<br /><br />'; 573 } 570 574 break; 571 575 case 1: // multi-part headers, can ignore -
wp-support-centre/trunk/readme.txt
r1673828 r1673938 5 5 Requires at least: 4.0 6 6 Tested up to: 4.8 7 Stable tag: 2017.06. 097 Stable tag: 2017.06.10 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 138 138 * Groups Plugin Support (group clients by company / organisation) 139 139 140 = 2017.06.10 = 141 142 * FIX : Seperate plain / html email parts 143 140 144 = 2017.06.09 = 141 145 -
wp-support-centre/trunk/wp-support-centre.php
r1673828 r1673938 5 5 * Author: Clough I.T. Solutions 6 6 * Author URI: https://cloughit.com.au 7 * Version: 2017.06. 097 * Version: 2017.06.10 8 8 * Text Domain: wp-support-centre 9 9 * License: GNU General Public License v2 or later … … 148 148 define( 'WPSC_REPLY_ABOVE', '-------- Reply Above --------' ); 149 149 define( 'WPSC_TICKET_URL', site_url() ); 150 define( 'WPSC_VERSION', '2017.06. 09' );150 define( 'WPSC_VERSION', '2017.06.10' ); 151 151 define( 'WPSC_JQUERY_VER', '1.12.3' ); 152 152 define( 'WPSC_JQUERYUI_VER', '1.11.4' );
Note: See TracChangeset
for help on using the changeset viewer.