-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9771 from awesomemotive/release/3.3.5.2
Release 3.3.5.2
- Loading branch information
Showing
7 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
# This file is distributed under the same license as the Easy Digital Downloads plugin. | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Easy Digital Downloads 3.3.5.1\n" | ||
"Project-Id-Version: Easy Digital Downloads 3.3.5.2\n" | ||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-digital-downloads-public\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"POT-Creation-Date: 2024-11-14T23:08:35+00:00\n" | ||
"POT-Creation-Date: 2024-11-22T09:18:08+00:00\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"X-Generator: WP-CLI 2.11.0\n" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ public function test_edd_get_purchase_session_logged_in_user() { | |
'edd_email' => '[email protected]', | ||
); | ||
$purchase_session = \EDD\Sessions\PurchaseData::start( false ); | ||
unset( $purchase_session['card_info'] ); | ||
unset( $purchase_session['post_data'] ); | ||
|
||
$this->assertEquals( $user_id, $purchase_session['user_info']['id'] ); | ||
$this->assertEquals( $_POST['edd_email'], $purchase_session['user_info']['email'] ); | ||
|
@@ -48,6 +50,8 @@ public function test_edd_get_purchase_session_guest() { | |
); | ||
|
||
$purchase_session = \EDD\Sessions\PurchaseData::start(); | ||
unset( $purchase_session['card_info'] ); | ||
unset( $purchase_session['post_data'] ); | ||
|
||
$this->assertEmpty( $purchase_session['user_info']['id'] ); | ||
$this->assertEquals( $_POST['edd_email'], $purchase_session['user_info']['email'] ); | ||
|