Plugin Directory

Changeset 3142203


Ignore:
Timestamp:
08/27/2024 10:32:39 AM (19 months ago)
Author:
webgarh
Message:

Release version of 1.0.5

Location:
upkepr-maintenance/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • upkepr-maintenance/trunk/readme.txt

    r3140393 r3142203  
    55Tested up to: 6.6
    66Requires PHP: 5.6
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7272=== Changelog ===
    7373
     74= 1.0.5 =
     75* Vulnerabilities details fetch with updated data
     76* Health report with more seo data
     77
    7478= 1.0.4 =
    7579* Stable health reports
  • upkepr-maintenance/trunk/upkepr_vulnerability.php

    r3140383 r3142203  
    263263$recommendedDataReports = $responseData->recommendation;
    264264$data = isset($recommendedDataReports->reponse_data) ? json_decode($recommendedDataReports->reponse_data) : "";
    265 if(empty($data)){
    266     return false;
    267 }
     265if (empty($data)) {
     266} else {
     267
    268268$site_url = site_url();
    269269$languageSugges = '';
     
    10841084            </div>
    10851085</section>
    1086 
     1086<?php } ?>
    10871087<script>
    10881088    jQuery(document).ready(function() {
    1089         /* jQuery("#copyButton").click(function() {
    1090             var hrefToCopy = jQuery("#textToCopy").attr("data-title");
    1091             var tempInput = document.createElement("input");
    1092             document.body.appendChild(tempInput);
    1093             tempInput.value = hrefToCopy;
    1094             tempInput.select();
    1095             document.execCommand("copy");
    1096             document.body.removeChild(tempInput);
    1097 
    1098             var notification = jQuery("#copyNotification");
    1099             var button = jQuery("#copyButton");
    1100             notification.css({
    1101                 left: (button.offset().left) + "px"
    1102             });
    1103             notification.fadeIn(200).delay(1000).fadeOut(200);
    1104         }); */
    1105 
    1106 
    11071089        var averageScore = '<?= $averageScore ?>';
    11081090        if (averageScore < 90 && averageScore >= 50) {
  • upkepr-maintenance/trunk/vulnerability.php

    r3140393 r3142203  
    1616 * Plugin Name:       Vulnerability Detector
    1717 * Description:       "Vulnerability Detector" is a WordPress plugin that allows Upkepr applications to stay connected with the website.
    18  * Version:           1.0.4
     18 * Version:           1.0.5
    1919 * Author:            Upkepr
    2020 * Author URI:        https://upkepr.com/
     
    974974                    $rerDataArgs = array(
    975975                        'body'        => $body_data,
    976                         'timeout'     => 15,
     976                        'timeout'     => 120,
    977977                        'httpversion' => '1.0',
    978978                        'data_format' => 'body',
Note: See TracChangeset for help on using the changeset viewer.