Changeset 2931818
- Timestamp:
- 06/28/2023 12:09:45 PM (3 years ago)
- Location:
- leyka/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (1 diff)
-
gateways/cp/js/leyka.cp.js (modified) (1 diff)
-
inc/leyka-ajax.php (modified) (1 diff)
-
inc/leyka-tmp-translations.php (modified) (1 diff)
-
leyka.php (modified) (2 diffs)
-
vendor/theiconic/php-ga-measurement-protocol/src/Network/HttpClient.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
leyka/trunk/README.txt
r2930835 r2931818 85 85 86 86 == Changelog == 87 = 3.30.3 = 88 * Fix: the important Google Analytics direct connection bug fixed ("Guzzle bug"). 89 * Fix: one recently found vulnerability fixed. 90 * Fix: now CloudPayments correctly redirects to the success|faulure page after the Tinkoff Pay payment. 91 87 92 = 3.30.2 = 88 93 * Fix: one recently found vulnerability fixed. -
leyka/trunk/gateways/cp/js/leyka.cp.js
r2791882 r2931818 135 135 // name: response.name, 136 136 email: response.donor_email, 137 data: data 137 data: data, 138 configuration: { 139 common: { 140 successRedirectUrl: response.success_page, 141 failRedirectUrl: response.failure_page 142 } 143 } 138 144 }, function(options){ // success callback 139 145 -
leyka/trunk/inc/leyka-ajax.php
r2929590 r2931818 427 427 428 428 } else if( 429 isset($_POST['donor_account_password_reset_code'])430 &&(431 !$donor_account->user_login432 || !is_a(check_password_reset_key($_POST['donor_account_password_reset_code'], $donor_account->user_login), 'WP_User')433 ) 429 !$donor_account->user_login 430 || !is_a(check_password_reset_key( 431 (empty($_POST['donor_account_password_reset_code']) ? '' : $_POST['donor_account_password_reset_code']), 432 $donor_account->user_login 433 ), 'WP_User') 434 434 ) { 435 435 -
leyka/trunk/inc/leyka-tmp-translations.php
r2619511 r2931818 162 162 __('Recurring', 'leyka'); 163 163 __('Donations dynamics', 'leyka'); 164 __('Recurrings', 'leyka'); 164 165 __('Recent donations', 'leyka'); 165 166 __('Donation funded', 'leyka'); -
leyka/trunk/leyka.php
r2929590 r2931818 5 5 * Plugin URI: https://leyka.org/ 6 6 * Description: Donations management system for your WP site. For NGOs and social projects. 7 * Version: 3.30. 27 * Version: 3.30.3 8 8 * Author: Teplitsa of social technologies 9 9 * Author URI: https://te-st.org … … 40 40 // Leyka plugin version: 41 41 if( !defined('LEYKA_VERSION') ) { 42 define('LEYKA_VERSION', '3.30. 2');42 define('LEYKA_VERSION', '3.30.3'); 43 43 } 44 44 -
leyka/trunk/vendor/theiconic/php-ga-measurement-protocol/src/Network/HttpClient.php
r2929590 r2931818 6 6 use GuzzleHttp\Client; 7 7 use GuzzleHttp\Psr7\Request; 8 use GuzzleHttp\Promise ;8 use GuzzleHttp\Promise\Utils; 9 9 use GuzzleHttp\Promise\PromiseInterface; 10 10 use Psr\Http\Message\RequestInterface; … … 49 49 public function __destruct() 50 50 { 51 Promise\unwrap(self::$promises);51 Utils::unwrap(self::$promises); 52 52 } 53 53
Note: See TracChangeset
for help on using the changeset viewer.