Changeset 1246051
- Timestamp:
- 09/15/2015 04:42:54 PM (11 years ago)
- Location:
- chargify/trunk
- Files:
-
- 2 edited
-
chargify.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chargify/trunk/chargify.php
r1243533 r1246051 5 5 Description: Manage subscriptions to WordPress using the Chargify API 6 6 Author: Subscription Tools - Programming by 9seeds 7 Version: 2.0. 77 Version: 2.0.8 8 8 Author URI: http://9seeds.com/plugins 9 9 */ … … 365 365 if ((isset($filteraccountingcodes[$p->getAccountCode()]) && $filteraccountingcodes[$p->getAccountCode()]) || count($filteraccountingcodes) == 0) { 366 366 $form .= '<tr>'; 367 $form .= '<td><div align="center"><strong><p>'.$p->getName().'</strong><br>$'.$p->getPriceInDollars().' '.($p->getInterval() == 1 ? 'each '.$p->getIntervalUnit() : 'every '.$p->getInterval().' '.$p->getIntervalUnit().'s').'<br>'. $p->getDescription().'</p></div></td>';367 $form .= '<td><div align="center"><strong><p>'.$p->getName().'</strong><br>$'.$p->getPriceInDollars().' '.($p->getInterval() == 1 ? 'each '.$p->getIntervalUnit() : 'every '.$p->getInterval().' '.$p->getIntervalUnit().'s').'<br>'.str_replace('\\','',$p->getDescription()).'</p></div></td>'; 368 368 $form .= '<td><p><input onclick="javascript:document.chargifySignupForm.submit.value=\''.$p->id.'\';" name="submit'.$p->getHandle().'" type="submit" value="'.$p->getName().'"></p></td>'; 369 369 $form .= '</tr>'; -
chargify/trunk/readme.txt
r1243533 r1246051 5 5 Requires at least: 2.9 6 6 Tested up to: 4.3 7 Stable Tag: 2.0. 77 Stable Tag: 2.0.8 8 8 9 9 WP-Chargify allows users to integrate the Chargify service with WordPress. … … 44 44 45 45 == Changelog == 46 = 2.0.8 = 47 * Fix inifinite slashes in chargify product forms 48 46 49 = 2.0.7 = 47 50 * Remove ALL debug code
Note: See TracChangeset
for help on using the changeset viewer.