Plugin Directory

Changeset 1246051


Ignore:
Timestamp:
09/15/2015 04:42:54 PM (11 years ago)
Author:
toddhuish
Message:

Fix infinite slashes problem in chargify product form

Location:
chargify/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chargify/trunk/chargify.php

    r1243533 r1246051  
    55Description: Manage subscriptions to WordPress using the Chargify API
    66Author: Subscription Tools - Programming by 9seeds
    7 Version: 2.0.7
     7Version: 2.0.8
    88Author URI: http://9seeds.com/plugins
    99*/
     
    365365                if ((isset($filteraccountingcodes[$p->getAccountCode()]) && $filteraccountingcodes[$p->getAccountCode()]) || count($filteraccountingcodes) == 0) {
    366366                    $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>';
    368368                    $form .= '<td><p><input onclick="javascript:document.chargifySignupForm.submit.value=\''.$p->id.'\';" name="submit'.$p->getHandle().'" type="submit" value="'.$p->getName().'"></p></td>';
    369369                    $form .= '</tr>';
  • chargify/trunk/readme.txt

    r1243533 r1246051  
    55Requires at least: 2.9
    66Tested up to: 4.3
    7 Stable Tag: 2.0.7
     7Stable Tag: 2.0.8
    88
    99WP-Chargify allows users to integrate the Chargify service with WordPress.
     
    4444
    4545== Changelog ==
     46= 2.0.8 =
     47* Fix inifinite slashes in chargify product forms
     48
    4649= 2.0.7 =
    4750* Remove ALL debug code
Note: See TracChangeset for help on using the changeset viewer.