Plugin Directory

Changeset 3325546


Ignore:
Timestamp:
07/10/2025 10:58:42 AM (8 months ago)
Author:
aryans
Message:
  • Improved user experience
  • Bug fixes
Location:
site-suggest
Files:
32 added
5 edited

Legend:

Unmodified
Added
Removed
  • site-suggest/trunk/app/ajax-controller.php

    r3324828 r3325546  
    387387                foreach ($matches[0] as $http_link) {
    388388                    if (strpos($http_link, 'w3.org') == false) {
    389                         $stsgt_http_links[] = $http_link;
     389                        $url_arr = parse_url($http_link);
     390                        $new_url = $url_arr['scheme'].'://'.$url_arr['host'].(isset($url_arr['port']) ? ':'.$url_arr['port'] : '').$url_arr['path'];
     391                        $stsgt_http_links[] = $new_url;
    390392                    }
    391393                }
  • site-suggest/trunk/app/info-controller.php

    r3324828 r3325546  
    563563            $sgst_limit = '';
    564564            if ($current_mb < $recommended) {
    565                 $sgst_limit = 'Should increase current memory limit to ' . $recommended . 'M , (Current ' . $current_mb . 'M). ' . $peak_memory_text;
     565                $sgst_limit = 'Should increase current memory limit to ' . $recommended . 'M , (Current ' . $current_mb . 'M).';//. $peak_memory_text;
    566566            } else {
    567                 $sgst_limit = 'Current Limit is ' . $current_mb . 'M , which more than recomended ' . $recommended . 'M. ' . $peak_memory_text;
     567                $sgst_limit = 'Current Limit is ' . $current_mb . 'M , which is more than recomended ' . $recommended . 'M.';// . $peak_memory_text;
    568568            }
    569569            return $sgst_limit;
     
    13051305        public function check_http_protocol()
    13061306        {
     1307            delete_option('stsgt_total_http_array');
    13071308            return false;
    13081309        }
  • site-suggest/trunk/assets/css/style.css

    r3324828 r3325546  
    448448    margin: 4px 8px;
    449449    cursor: pointer;
     450    z-index: 999;
     451    position: relative;
    450452}
    451453
  • site-suggest/trunk/readme.txt

    r3324828 r3325546  
    44Tested up to:      6.8
    55Requires PHP:      7.2
    6 Stable tag:        1.2.2
     6Stable tag:        1.2.3
    77License:           GPLv2 or later
    88License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    151151== Changelog ==
    152152
     153= 1.2.3 - 2025-07-10 =
     154* Improved user experience
     155* Bug fixes
     156
    153157= 1.2.2 - 2025-07-9 =
    154158* Added ability to check each feature individually.
  • site-suggest/trunk/site-suggest.php

    r3324828 r3325546  
    66 * Author: Blurr Studio
    77 * Author URI: https://blurr.it/
    8  * Version: 1.2.2
     8 * Version: 1.2.3
    99 * License: GPL v2 or later
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3636            define('stsgt_URL', plugin_dir_url(__FILE__));
    3737            define('stsgt_SLUG', 'site-suggest');
    38             define('stsgt_VERSION', '1.2.2');
     38            define('stsgt_VERSION', '1.2.3');
    3939        }
    4040
Note: See TracChangeset for help on using the changeset viewer.