Changeset 2405880
- Timestamp:
- 10/24/2020 01:33:14 PM (5 years ago)
- Location:
- transact
- Files:
-
- 3 edited
- 11 copied
-
tags/5.3.0 (copied) (copied from transact/trunk)
-
tags/5.3.0/admin/controllers/transact-admin-settings-post.php (copied) (copied from transact/trunk/admin/controllers/transact-admin-settings-post.php)
-
tags/5.3.0/config.ini (copied) (copied from transact/trunk/config.ini)
-
tags/5.3.0/frontend/assets/style.css (copied) (copied from transact/trunk/frontend/assets/style.css)
-
tags/5.3.0/frontend/assets/transact_post.js (copied) (copied from transact/trunk/frontend/assets/transact_post.js)
-
tags/5.3.0/frontend/controllers/account_meta.php (copied) (copied from transact/trunk/frontend/controllers/account_meta.php)
-
tags/5.3.0/frontend/controllers/transact-api.php (copied) (copied from transact/trunk/frontend/controllers/transact-api.php)
-
tags/5.3.0/frontend/controllers/transact-single-post.php (copied) (copied from transact/trunk/frontend/controllers/transact-single-post.php) (1 diff)
-
tags/5.3.0/readme.txt (copied) (copied from transact/trunk/readme.txt) (2 diffs)
-
tags/5.3.0/transact-plugin.php (copied) (copied from transact/trunk/transact-plugin.php) (1 diff)
-
tags/5.3.0/utils/transact-utils-config-parser.php (copied) (copied from transact/trunk/utils/transact-utils-config-parser.php)
-
trunk/frontend/controllers/transact-single-post.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/transact-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
transact/tags/5.3.0/frontend/controllers/transact-single-post.php
r2402593 r2405880 390 390 } else { 391 391 if($cur_user->ID !== $wp_userid) { 392 add_filter ( 'auth_cookie_expiration', function (int $length): int { 393 return 60 * 60 * 24 * 15; 394 }); 395 392 396 wp_clear_auth_cookie(); 393 397 wp_set_current_user ( $wp_userid ); 394 wp_set_auth_cookie ( $wp_userid );398 wp_set_auth_cookie ( $wp_userid, true ); // second parameter true remembers user for 14 days. 395 399 } 396 400 } -
transact/tags/5.3.0/readme.txt
r2402593 r2405880 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.5.1 8 Stable tag: 5. 2.38 Stable tag: 5.3.0 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 81 81 == Changelog == 82 82 83 84 = 5.3.0 = 85 * Set wordpress_logged_in to 15 days to stay signed in. 86 83 87 = 5.2.3 = 84 88 * Error check for blocked scripts -
transact/tags/5.3.0/transact-plugin.php
r2402593 r2405880 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5. 2.35 * Version: 5.3.0 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io -
transact/trunk/frontend/controllers/transact-single-post.php
r2402593 r2405880 390 390 } else { 391 391 if($cur_user->ID !== $wp_userid) { 392 add_filter ( 'auth_cookie_expiration', function (int $length): int { 393 return 60 * 60 * 24 * 15; 394 }); 395 392 396 wp_clear_auth_cookie(); 393 397 wp_set_current_user ( $wp_userid ); 394 wp_set_auth_cookie ( $wp_userid );398 wp_set_auth_cookie ( $wp_userid, true ); // second parameter true remembers user for 14 days. 395 399 } 396 400 } -
transact/trunk/readme.txt
r2402593 r2405880 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.5.1 8 Stable tag: 5. 2.38 Stable tag: 5.3.0 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 81 81 == Changelog == 82 82 83 84 = 5.3.0 = 85 * Set wordpress_logged_in to 15 days to stay signed in. 86 83 87 = 5.2.3 = 84 88 * Error check for blocked scripts -
transact/trunk/transact-plugin.php
r2402593 r2405880 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5. 2.35 * Version: 5.3.0 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io
Note: See TracChangeset
for help on using the changeset viewer.