Changeset 833404
- Timestamp:
- 01/05/2014 06:11:23 PM (12 years ago)
- Location:
- striper/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
stripe_gateway.php (modified) (1 diff)
-
striper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
striper/trunk/readme.txt
r832384 r833404 4 4 Requires at least: 3.0 5 5 Tested up to: 3.6 6 Stable tag: 0.2 36 Stable tag: 0.24 7 7 Donate link: https://blog.seanvoss.com/shop/striper/ 8 8 License: GPLv2 or later … … 32 32 == Changelog == 33 33 34 = 0.24 = 35 * Fix for versions < PHP 5.3 36 = 0.23 = 37 * Added non-default image url 34 38 = 0.22 = 35 39 * Missed country and state from prior commit -
striper/trunk/stripe_gateway.php
r832384 r833404 29 29 $this->title = $this->settings['title']; 30 30 $this->description = ''; 31 $this->icon = $this->settings['alternate_imageurl'] ? : WP_PLUGIN_URL . "/" . plugin_basename( dirname(__FILE__)) . '/images/credits.png';31 $this->icon = $this->settings['alternate_imageurl'] ? $this->settings['alternate_imageurl'] : WP_PLUGIN_URL . "/" . plugin_basename( dirname(__FILE__)) . '/images/credits.png'; 32 32 $this->usesandboxapi = strcmp($this->settings['debug'], 'yes') == 0; 33 33 $this->testApiKey = $this->settings['test_api_key' ]; -
striper/trunk/striper.php
r832384 r833404 4 4 Plugin URI: http://blog.seanvoss.com/product/striper 5 5 Description: Provides a Credit Card Payment Gateway through Stripe for woo-commerece. 6 Version: 0.2 36 Version: 0.24 7 7 Author: Sean Voss 8 8 Author URI: https://blog.seanvoss.com/
Note: See TracChangeset
for help on using the changeset viewer.