Plugin Directory

Changeset 3361017


Ignore:
Timestamp:
09/13/2025 12:42:16 PM (6 months ago)
Author:
aryans
Message:
  • Schema detection fixes.
  • Structure Improvement.
Location:
site-suggest
Files:
32 added
4 edited

Legend:

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

    r3358399 r3361017  
    861861            }
    862862
    863             $this_return = ['<strong>Warnings</strong>:- '.$warning_string.' <br> '.' <strong>Errors</strong>:- '.$errors_string];
     863            if($warning_string != "" || $errors_string != ""){
     864                $this_return = ['<strong>Warnings</strong>:- '.$warning_string.' <br> '.' <strong>Errors</strong>:- '.$errors_string];
     865            }
    864866           
    865867            return $this_return;
  • site-suggest/trunk/app/info-controller.php

    r3358972 r3361017  
    19971997                ];
    19981998                foreach ($possible_sitemaps as $path) {
    1999                     $url = rtrim($url, '/') . $path;
    2000                     $headers = @get_headers($url);
     1999                    $sitemap_url = rtrim($url, '/') . $path;
     2000                    $headers = @get_headers($sitemap_url);
    20012001                    if ($headers && strpos($headers[0], '200') !== false) {
    2002                         $has_sitemap = ['Yes' => $url];
     2002                        $has_sitemap = ['Yes' => $sitemap_url];
    20032003                    }
    20042004                }
  • site-suggest/trunk/readme.txt

    r3359134 r3361017  
    44Tested up to:      6.8
    55Requires PHP:      7.2
    6 Stable tag:        1.3.3
     6Stable tag:        1.3.4
    77License:           GPLv2 or later
    88License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    152152
    153153= 1.3.2 - 2025-09-10 =
     154* Schema detection fixes.
     155* Structure Improvement.
     156
     157= 1.3.2 - 2025-09-10 =
    154158* Bug Fixes
    155159
  • site-suggest/trunk/site-suggest.php

    r3359134 r3361017  
    66 * Author: Blurr Studio
    77 * Author URI: https://blurr.it/
    8  * Version: 1.3.3
     8 * Version: 1.3.4
    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.3.3');
     38            define('stsgt_VERSION', '1.3.4');
    3939        }
    4040
Note: See TracChangeset for help on using the changeset viewer.