Changeset 1578037
- Timestamp:
- 01/19/2017 02:34:26 PM (9 years ago)
- Location:
- fomo/trunk
- Files:
-
- 5 edited
-
phpseclib/Crypt/Base.php (modified) (1 diff)
-
phpseclib/Crypt/Hash.php (modified) (2 diffs)
-
phpseclib/File/ASN1.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woocommerce-plugin-fomo.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fomo/trunk/phpseclib/Crypt/Base.php
r1546006 r1578037 634 634 function setPassword($password, $method = 'pbkdf2') 635 635 { 636 $func_args = func_get_args(); 636 637 $key = ''; 637 638 638 639 switch ($method) { 639 640 default: // 'pbkdf2' or 'pbkdf1' 640 $func_args = func_get_args();641 641 642 642 // Hash function -
fomo/trunk/phpseclib/Crypt/Hash.php
r1546006 r1578037 812 812 function _add() 813 813 { 814 $arguments = func_get_args(); 814 815 static $mod; 815 816 if (!isset($mod)) { … … 818 819 819 820 $result = 0; 820 $arguments = func_get_args();821 821 foreach ($arguments as $argument) { 822 822 $result+= $argument < 0 ? ($argument & 0x7FFFFFFF) + 0x80000000 : $argument; -
fomo/trunk/phpseclib/File/ASN1.php
r1546006 r1578037 133 133 * @access public 134 134 */ 135 function File_ASN1_Element($encoded)135 function __construct($encoded) 136 136 { 137 137 $this->element = $encoded; -
fomo/trunk/readme.txt
r1562764 r1578037 5 5 Tags: social proof, notifications, orders, woocommerce 6 6 Requires at least: 4.4 7 Tested up to: 4.7 7 Tested up to: 4.7.1 8 8 Stable tag: 4.7 9 9 License: proprietary … … 102 102 == Changelog == 103 103 104 = 1.0.12 = 105 * Added support for ignoring products from notifications, PHP7 code compliance 106 104 107 = 1.0.11 = 105 108 * Fixed problem with not upgraded servers having problem connecting to our HTTPS endpoints -
fomo/trunk/woocommerce-plugin-fomo.php
r1562764 r1578037 4 4 Plugin URI: https://www.usefomo.com 5 5 Description: Fomo displays recent orders on your WooCommerce storefront 6 Version: 1.0.1 16 Version: 1.0.12 7 7 Author: fomo 8 8 Author URI: https://www.usefomo.com … … 16 16 $fomofwc_domain = 'https://notifyapp.io'; 17 17 global $fomofwc_version; 18 $fomofwc_version = '1.0.1 1';18 $fomofwc_version = '1.0.12'; 19 19 $fomofwc_public_key = "-----BEGIN PUBLIC KEY----- 20 20 MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwKXALE9j5lHEVt6Yj1hK … … 246 246 'id' => $product_id, 247 247 'product_image_url' => wp_get_attachment_url($product->get_image_id()), 248 'product_url' => $product->get_permalink() 248 'product_url' => $product->get_permalink(), 249 'product_attributes' => $product->get_attributes() 249 250 ]; 250 251 } … … 292 293 'id' => $product_id, 293 294 'product_image_url' => wp_get_attachment_url($product->get_image_id()), 294 'product_url' => $product->get_permalink() 295 'product_url' => $product->get_permalink(), 296 'product_attributes' => $product->get_attributes() 295 297 ]; 296 298 return $result; … … 371 373 'id' => $product_id, 372 374 'product_image_url' => wp_get_attachment_url($product->get_image_id()), 373 'product_url' => $product->get_permalink() 375 'product_url' => $product->get_permalink(), 376 'product_attributes' => $product->get_attributes() 374 377 ]; 375 378 }
Note: See TracChangeset
for help on using the changeset viewer.