Changeset 3102004
- Timestamp:
- 06/12/2024 07:48:36 PM (9 months ago)
- Location:
- zapier
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
zapier/tags/1.5.1/readme.txt
r3097616 r3102004 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.4 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: Expat (MIT License) 9 9 License URI: https://spdx.org/licenses/MIT.html … … 123 123 124 124 * Add updated post hook 125 126 = 1.5.1 = 127 128 * Reduce login attempts by increasing expiration of auth tokens -
zapier/tags/1.5.1/zapier.php
r3097616 r3102004 4 4 * Plugin Name: Zapier for WordPress 5 5 * Description: Zapier enables you to automatically share your posts to social media, create WordPress posts from Mailchimp newsletters, and much more. Visit https://zapier.com/apps/wordpress/integrations for more details. 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Author: Zapier 8 8 * Author URI: https://zapier.com … … 148 148 'iat' => $issuedAt, 149 149 'nbf' => $issuedAt, 150 'exp' => $issuedAt + 300,150 'exp' => $issuedAt + (60 * 20), 151 151 'data' => array( 152 152 'user_id' => $user->data->ID, -
zapier/trunk/readme.txt
r3097616 r3102004 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.4 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: Expat (MIT License) 9 9 License URI: https://spdx.org/licenses/MIT.html … … 123 123 124 124 * Add updated post hook 125 126 = 1.5.1 = 127 128 * Reduce login attempts by increasing expiration of auth tokens -
zapier/trunk/zapier.php
r3097616 r3102004 4 4 * Plugin Name: Zapier for WordPress 5 5 * Description: Zapier enables you to automatically share your posts to social media, create WordPress posts from Mailchimp newsletters, and much more. Visit https://zapier.com/apps/wordpress/integrations for more details. 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Author: Zapier 8 8 * Author URI: https://zapier.com … … 148 148 'iat' => $issuedAt, 149 149 'nbf' => $issuedAt, 150 'exp' => $issuedAt + 300,150 'exp' => $issuedAt + (60 * 20), 151 151 'data' => array( 152 152 'user_id' => $user->data->ID,
Note: See TracChangeset
for help on using the changeset viewer.