Plugin Directory

Changeset 1673938


Ignore:
Timestamp:
06/08/2017 10:58:49 PM (9 years ago)
Author:
cloughit
Message:

2017.06.10

Location:
wp-support-centre/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-support-centre/trunk/imap/imap.php

    r1673828 r1673938  
    187187                                    switch( $part->type ) {
    188188                                        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                                            }
    190194                                            break;
    191195                                        case 1: // multi-part headers, can ignore
  • wp-support-centre/trunk/includes/functions.php

    r1673221 r1673938  
    567567                        case 0: // the HTML or plain text part of the email
    568568                            $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                            }
    570574                            break;
    571575                        case 1: // multi-part headers, can ignore
  • wp-support-centre/trunk/readme.txt

    r1673828 r1673938  
    55Requires at least: 4.0
    66Tested up to: 4.8
    7 Stable tag: 2017.06.09
     7Stable tag: 2017.06.10
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    138138* Groups Plugin Support (group clients by company / organisation)
    139139
     140= 2017.06.10 =
     141
     142* FIX : Seperate plain / html email parts
     143
    140144= 2017.06.09 =
    141145
  • wp-support-centre/trunk/wp-support-centre.php

    r1673828 r1673938  
    55 * Author:      Clough I.T. Solutions
    66 * Author URI:  https://cloughit.com.au
    7  * Version:     2017.06.09
     7 * Version:     2017.06.10
    88 * Text Domain: wp-support-centre
    99 * License:     GNU General Public License v2 or later
     
    148148        define( 'WPSC_REPLY_ABOVE', '-------- Reply Above --------' );
    149149        define( 'WPSC_TICKET_URL', site_url() );
    150         define( 'WPSC_VERSION', '2017.06.09' );
     150        define( 'WPSC_VERSION', '2017.06.10' );
    151151        define( 'WPSC_JQUERY_VER', '1.12.3' );
    152152        define( 'WPSC_JQUERYUI_VER', '1.11.4' );
Note: See TracChangeset for help on using the changeset viewer.