Plugin Directory

Changeset 639134


Ignore:
Timestamp:
12/14/2012 12:19:39 PM (13 years ago)
Author:
jealousdesigns
Message:

fixed bug with subscriber details not appearing

Location:
chimppress
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • chimppress/tags/0.8.9/chimppress.php

    r601540 r639134  
    66Author: Fish Can't Whistle
    77Author URI: http://fishcantwhistle.com
    8 Version: 0.8.8
     8Version: 0.8.9
    99*/
    1010
  • chimppress/tags/0.8.9/includes/class-chimppress-subscribers-page.php

    r548923 r639134  
    268268        }
    269269        $chimppress_mailchimp_api_functions = new chimppress_mailchimp_api_functions;
    270        
    271         $this->list_members = $chimppress_mailchimp_api_functions->list_member_info($list, $emails);
    272270   
    273271        ?>
     
    323321                    <?php $i =0;
    324322                    foreach($members['data'] as $member){
    325 
     323                   
     324                        $this->list_members = $chimppress_mailchimp_api_functions->list_member_info($list, $member['email']);
     325                               
    326326                        if(is_array($member)){
    327327                            $memberinfo = $this->search_array($this->list_members['data'], 'email', $member['email'] );
     
    332332                        <tr style="line-height:25px;">
    333333                            <td class=""><?php echo $memberinfo['merges']['FNAME'] . " " . $memberinfo['merges']['LNAME']; ?></td>
    334                             <td class=""><?php echo $memberinfo['email']; ?></td>
     334                            <td class=""><?php echo $member['email']; ?></td>
    335335                            <td class="">
    336336                                <?php $rating =  $memberinfo['member_rating'];
  • chimppress/tags/0.8.9/readme.txt

    r601540 r639134  
    55Requires at least: 3.0
    66Tested up to: 3.2.1
    7 Stable tag: 0.8.8
     7Stable tag: 0.8.9
    88
    99ChimpPress is a new way to manage your MailChimp campaigns right from your WordPress Dashboard.
     
    104104*Removed dependancy on highslide charts plugin due to license incompatability and now using flot
    105105
     106= 0.8.9 =
     107
     108*Fixed bug where subscriber details were blank
     109
    106110== Upgrade Notice ==
    107111
     
    149153
    150154Removing highslide charts plugin due to license incompatablility. Now using flot.
     155
     156= 0.8.9 =
     157
     158Fixed bug where subscriber details were blank
  • chimppress/trunk/chimppress.php

    r601540 r639134  
    66Author: Fish Can't Whistle
    77Author URI: http://fishcantwhistle.com
    8 Version: 0.8.8
     8Version: 0.8.9
    99*/
    1010
  • chimppress/trunk/includes/class-chimppress-subscribers-page.php

    r548923 r639134  
    268268        }
    269269        $chimppress_mailchimp_api_functions = new chimppress_mailchimp_api_functions;
    270        
    271         $this->list_members = $chimppress_mailchimp_api_functions->list_member_info($list, $emails);
    272270   
    273271        ?>
     
    323321                    <?php $i =0;
    324322                    foreach($members['data'] as $member){
    325 
     323                   
     324                        $this->list_members = $chimppress_mailchimp_api_functions->list_member_info($list, $member['email']);
     325                               
    326326                        if(is_array($member)){
    327327                            $memberinfo = $this->search_array($this->list_members['data'], 'email', $member['email'] );
     
    332332                        <tr style="line-height:25px;">
    333333                            <td class=""><?php echo $memberinfo['merges']['FNAME'] . " " . $memberinfo['merges']['LNAME']; ?></td>
    334                             <td class=""><?php echo $memberinfo['email']; ?></td>
     334                            <td class=""><?php echo $member['email']; ?></td>
    335335                            <td class="">
    336336                                <?php $rating =  $memberinfo['member_rating'];
  • chimppress/trunk/readme.txt

    r601540 r639134  
    55Requires at least: 3.0
    66Tested up to: 3.2.1
    7 Stable tag: 0.8.8
     7Stable tag: 0.8.9
    88
    99ChimpPress is a new way to manage your MailChimp campaigns right from your WordPress Dashboard.
     
    104104*Removed dependancy on highslide charts plugin due to license incompatability and now using flot
    105105
     106= 0.8.9 =
     107
     108*Fixed bug where subscriber details were blank
     109
    106110== Upgrade Notice ==
    107111
     
    149153
    150154Removing highslide charts plugin due to license incompatablility. Now using flot.
     155
     156= 0.8.9 =
     157
     158Fixed bug where subscriber details were blank
Note: See TracChangeset for help on using the changeset viewer.