Plugin Directory

Changeset 597908


Ignore:
Timestamp:
09/12/2012 10:15:33 AM (14 years ago)
Author:
6WWW
Message:

2.4.6

Location:
wpcb/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wpcb/trunk/index.php

    r592851 r597908  
    55Plugin URI: http://wpcb.fr
    66Description: Plugin de paiement par CB, paypal, ... et de calcul de frais de port (WP e-Commerce requis)
    7 Version: 2.4.5
     7Version: 2.4.6
    88Author: 6WWW
    99Author URI: http://6www.net
  • wpcb/trunk/readme.txt

    r592851 r597908  
    66Requires at least: 2.7
    77Tested up to: 3.4.1
    8 Stable tag: 2.4.5
     8Stable tag: 2.4.6
    99
    1010Paiement par cartes bancaires (majoritée des banques françaises), paypal, chèques et virement pour le plugin WP e-Commerce.
     
    233233
    234234== Changelog ==
     235
     236= 2.4.6 =
     237* checkConnection function has been renamned to wpcb_trello_checkConnection for compatibility with other plugins
     238
    235239= 2.4.5 =
    236240
  • wpcb/trunk/trello.php

    r577667 r597908  
    2323    echo '<p>Sur certains site, il faut cliquer plusieurs fois sur "Sauvegarder"</p>';
    2424    $options = get_option( 'wpcb_trello');
    25     $connectionInfos=checkConnection($options['apiKey'],$options['token']);
     25    $connectionInfos=wpcb_trello_checkConnection($options['apiKey'],$options['token']);
    2626    $memberInfos=getMembersInfos($options['apiKey'],$options['token'],$connectionInfos->idMember);
    2727    if ($memberInfos->fullName){
     
    4646    $options = get_option( 'wpcb_trello');
    4747   
    48     $connectionInfos=checkConnection($options['apiKey'],$options['token']);
     48    $connectionInfos=wpcb_trello_checkConnection($options['apiKey'],$options['token']);
    4949    $memberInfos=getMembersInfos($options['apiKey'],$options['token'],$connectionInfos->idMember);
    5050
     
    158158}
    159159
    160 function checkConnection($key,$token){
     160function wpcb_trello_checkConnection($key,$token){
    161161    $url='https://trello.com/1/tokens/'.$token;
    162162    $connectionInfos=cURL_GET_trello('',$url,$key,$token);
Note: See TracChangeset for help on using the changeset viewer.