Changeset 2541566
- Timestamp:
- 06/02/2021 08:18:35 PM (5 years ago)
- Location:
- lockr/trunk
- Files:
-
- 2 edited
-
lockr.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lockr/trunk/lockr.php
r2455112 r2541566 10 10 Plugin URI: https://lockr.io/ 11 11 Description: Integrate with the Lockr hosted secrets management platform. Secure all your plugin passwords, API tokens and encryption keys according to industry best practices. With Lockr, secrets management is easy. 12 Version: 3.0. 312 Version: 3.0.4 13 13 Author: Lockr 14 14 Author URI: htts://lockr.io/ … … 430 430 } 431 431 432 if ( MCRYPT_RIJNDAEL_256 === $cipher ) {432 if ( defined('MCRYPT_RIJNDAEL_256') && MCRYPT_RIJNDAEL_256 === $cipher ) { 433 433 if ( ! isset( $parts['mode'] ) ) { 434 434 return null; -
lockr/trunk/readme.txt
r2455110 r2541566 3 3 Tags: encrypt, secrets management, secrets, encryption, security, API, key, password, security, secure, locker 4 4 Requires at least: 2.7 5 Tested up to: 5. 45 Tested up to: 5.7 6 6 Requires PHP: 5.5 7 7 Stable tag: trunk … … 79 79 == Changelog == 80 80 81 = 3.0.4 = 82 This is a minor fix that cleans up an undefined constant for a deprecated extension. 83 81 84 = 3.0.3 = 82 85 This is a minor fix that cleans up an incompatibility with upcoming versions of PHP.
Note: See TracChangeset
for help on using the changeset viewer.