Changeset 597908
- Timestamp:
- 09/12/2012 10:15:33 AM (14 years ago)
- Location:
- wpcb/trunk
- Files:
-
- 3 edited
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
trello.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpcb/trunk/index.php
r592851 r597908 5 5 Plugin URI: http://wpcb.fr 6 6 Description: Plugin de paiement par CB, paypal, ... et de calcul de frais de port (WP e-Commerce requis) 7 Version: 2.4. 57 Version: 2.4.6 8 8 Author: 6WWW 9 9 Author URI: http://6www.net -
wpcb/trunk/readme.txt
r592851 r597908 6 6 Requires at least: 2.7 7 7 Tested up to: 3.4.1 8 Stable tag: 2.4. 58 Stable tag: 2.4.6 9 9 10 10 Paiement par cartes bancaires (majoritée des banques françaises), paypal, chèques et virement pour le plugin WP e-Commerce. … … 233 233 234 234 == Changelog == 235 236 = 2.4.6 = 237 * checkConnection function has been renamned to wpcb_trello_checkConnection for compatibility with other plugins 238 235 239 = 2.4.5 = 236 240 -
wpcb/trunk/trello.php
r577667 r597908 23 23 echo '<p>Sur certains site, il faut cliquer plusieurs fois sur "Sauvegarder"</p>'; 24 24 $options = get_option( 'wpcb_trello'); 25 $connectionInfos= checkConnection($options['apiKey'],$options['token']);25 $connectionInfos=wpcb_trello_checkConnection($options['apiKey'],$options['token']); 26 26 $memberInfos=getMembersInfos($options['apiKey'],$options['token'],$connectionInfos->idMember); 27 27 if ($memberInfos->fullName){ … … 46 46 $options = get_option( 'wpcb_trello'); 47 47 48 $connectionInfos= checkConnection($options['apiKey'],$options['token']);48 $connectionInfos=wpcb_trello_checkConnection($options['apiKey'],$options['token']); 49 49 $memberInfos=getMembersInfos($options['apiKey'],$options['token'],$connectionInfos->idMember); 50 50 … … 158 158 } 159 159 160 function checkConnection($key,$token){160 function wpcb_trello_checkConnection($key,$token){ 161 161 $url='https://trello.com/1/tokens/'.$token; 162 162 $connectionInfos=cURL_GET_trello('',$url,$key,$token);
Note: See TracChangeset
for help on using the changeset viewer.