Plugin Directory

Changeset 2559638


Ignore:
Timestamp:
07/06/2021 09:02:04 PM (5 years ago)
Author:
lionsgate
Message:

Updates as version 1.0.3 to fix a tracking issue.

Location:
passwordsentry/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • passwordsentry/trunk/passwordsentry.php

    r2557991 r2559638  
    44* Plugin URI:        https://www.password-sentry.com/
    55* Description:       Integrates Password Sentry (PS) app into the WordPress (WP) environment to track logins.
    6 * Version:           1.0.2
     6* Version:           1.0.3
    77* Requires at least: 5.7.2
    88* Requires PHP:      5.6
     
    6262                }
    6363                else {
    64                     preg_match('/Members Login Fatal Error/', $res, $matches);
     64                    preg_match('/Members Tracking Fatal Error/', $res, $matches);
    6565                    if (! $matches) {
    6666                        $error[]    = translate('PS API Endpoint URL does not appear to be valid!');
     
    8888                update_option("pswpp_settings", $pswpp_settings);
    8989                ?>
    90                 <div class="alert alert-success alert-dismissible" style="margin-top:20px;">
    91                     <button type="button" class="close" data-dismiss="alert">&times;</button>
     90                <div class="alert alert-success" style="margin-top:20px;">
    9291                    <?php _e("Plugin Settings Updated!", "passwordsentry"); ?>
    9392                </div>
     
    9695            else {
    9796                ?>
    98                 <div class="alert alert-danger alert-dismissible" style="margin-top:20px;">
    99                     <button type="button" class="close" data-dismiss="alert">&times;</button>
     97                <div class="alert alert-danger" style="margin-top:20px;">
    10098                    <?php
    10199                    foreach ($error as $key => $val) {
     
    204202    if (($pswpp_settings['pswpp_api_endpoint_url']) and ($pswpp_settings['pswpp_status'] == "enabled")) {
    205203        $url    = $pswpp_settings['pswpp_api_endpoint_url'] . "&user=" . $user . "&mode=1&ip=" . $_SERVER['REMOTE_ADDR'];
    206         $url    = esc_url($url);
    207204        $res    = wp_remote_retrieve_body(wp_remote_get($url));
    208205        if ($user and $res) {
  • passwordsentry/trunk/readme.txt

    r2557991 r2559638  
    77Tested up to: 5.7.2
    88Requires PHP: 5.6
    9 Stable Tag: 1.0.2
     9Stable Tag: 1.0.3
    1010License: GPLv2 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9797== Changelog ==
    9898
    99 = 1.00 =
    100 * Initial release of the Plugin.
     99= 1.0.3 (Jul 06 2021) =
     100* Fixed tracking issue.
    101101
    102102== Upgrade Notice ==
    103 Initial release of the Plugin.
     103= 1.0.3 =
     104This version fixes a tracking related bug.  Upgrade immediately.
  • passwordsentry/trunk/version.txt

    r2557991 r2559638  
    1 1.0.2
     11.0.3
Note: See TracChangeset for help on using the changeset viewer.