Changeset 2559638
- Timestamp:
- 07/06/2021 09:02:04 PM (5 years ago)
- Location:
- passwordsentry/trunk
- Files:
-
- 3 edited
-
passwordsentry.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
-
version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
passwordsentry/trunk/passwordsentry.php
r2557991 r2559638 4 4 * Plugin URI: https://www.password-sentry.com/ 5 5 * Description: Integrates Password Sentry (PS) app into the WordPress (WP) environment to track logins. 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Requires at least: 5.7.2 8 8 * Requires PHP: 5.6 … … 62 62 } 63 63 else { 64 preg_match('/Members LoginFatal Error/', $res, $matches);64 preg_match('/Members Tracking Fatal Error/', $res, $matches); 65 65 if (! $matches) { 66 66 $error[] = translate('PS API Endpoint URL does not appear to be valid!'); … … 88 88 update_option("pswpp_settings", $pswpp_settings); 89 89 ?> 90 <div class="alert alert-success alert-dismissible" style="margin-top:20px;"> 91 <button type="button" class="close" data-dismiss="alert">×</button> 90 <div class="alert alert-success" style="margin-top:20px;"> 92 91 <?php _e("Plugin Settings Updated!", "passwordsentry"); ?> 93 92 </div> … … 96 95 else { 97 96 ?> 98 <div class="alert alert-danger alert-dismissible" style="margin-top:20px;"> 99 <button type="button" class="close" data-dismiss="alert">×</button> 97 <div class="alert alert-danger" style="margin-top:20px;"> 100 98 <?php 101 99 foreach ($error as $key => $val) { … … 204 202 if (($pswpp_settings['pswpp_api_endpoint_url']) and ($pswpp_settings['pswpp_status'] == "enabled")) { 205 203 $url = $pswpp_settings['pswpp_api_endpoint_url'] . "&user=" . $user . "&mode=1&ip=" . $_SERVER['REMOTE_ADDR']; 206 $url = esc_url($url);207 204 $res = wp_remote_retrieve_body(wp_remote_get($url)); 208 205 if ($user and $res) { -
passwordsentry/trunk/readme.txt
r2557991 r2559638 7 7 Tested up to: 5.7.2 8 8 Requires PHP: 5.6 9 Stable Tag: 1.0. 29 Stable Tag: 1.0.3 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 97 97 == Changelog == 98 98 99 = 1.0 0=100 * Initial release of the Plugin.99 = 1.0.3 (Jul 06 2021) = 100 * Fixed tracking issue. 101 101 102 102 == Upgrade Notice == 103 Initial release of the Plugin. 103 = 1.0.3 = 104 This version fixes a tracking related bug. Upgrade immediately. -
passwordsentry/trunk/version.txt
r2557991 r2559638 1 1.0. 21 1.0.3
Note: See TracChangeset
for help on using the changeset viewer.