Changeset 1521149
- Timestamp:
- 10/24/2016 02:18:05 PM (9 years ago)
- Location:
- zibbra/trunk
- Files:
-
- 3 edited
-
modules/checkout.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
zibbra.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zibbra/trunk/modules/checkout.php
r1520882 r1521149 426 426 $user = wp_get_current_user(); 427 427 428 if(in_array(Zibbra_Plugin::ROLE, $user->roles) ) {428 if(in_array(Zibbra_Plugin::ROLE, $user->roles) || in_array(Zibbra_Plugin::ROLE, array_keys($user->caps))) { 429 429 430 430 $customer = ZCustomer::load(); -
zibbra/trunk/readme.txt
r1520882 r1521149 4 4 Contributors: Zibbra 5 5 Tags: Ecommerce, Cloud 6 Stable tag: 1.5. 36 Stable tag: 1.5.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 52 52 == Changelog == 53 54 = 1.5.4 = 55 56 * Fix login issues on multisite webshops 53 57 54 58 = 1.5.3 = -
zibbra/trunk/zibbra.php
r1520882 r1521149 6 6 * Plugin URI: http://wordpress.org/plugins/zibbra/ 7 7 * Description: Zibbra integration plugin for Wordpress 8 * Version: 1.5. 38 * Version: 1.5.4 9 9 * Author: Zibbra 10 10 * Author URI: https://www.zibbra.com … … 84 84 const FORM_ACTION = "zibbra"; 85 85 const ROLE = "customer"; 86 const VERSION = "1.5. 3";86 const VERSION = "1.5.4"; 87 87 88 88 private $controller = null;
Note: See TracChangeset
for help on using the changeset viewer.