Plugin Directory

Changeset 3092670


Ignore:
Timestamp:
05/26/2024 01:49:23 PM (22 months ago)
Author:
alpipego
Message:

Update to version 1.1.7 from GitHub

Location:
ultimate-410
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ultimate-410/tags/1.1.7/src/Plugin.php

    r3074532 r3092670  
    5555            : untrailingslashit($wp->request);
    5656
     57        if ($request === '') {
     58            return;
     59        }
     60
    5761        foreach ($this->customTable->getAllRules() as $rule) {
    5862            $tester = new RuleTester($rule);
     
    107111        }
    108112
    109         add_action('template_redirect', [$this, 'templateRedirect'], 0);
     113        add_action('template_redirect', [$this, 'templateRedirect']);
    110114    }
    111115}
  • ultimate-410/tags/1.1.7/ultimate-410.php

    r3089509 r3092670  
    33 * Plugin Name: Ultimate 410
    44 * Description: Ultimate 410 HTTP Status Code plugin.
    5  * Version: 1.1.6
     5 * Version: 1.1.7
    66 * Author: tinyweb, 7iebenschlaefer, alpipego
    77 * Author URI: https://tinyweb.com/
  • ultimate-410/trunk/src/Plugin.php

    r3074532 r3092670  
    5555            : untrailingslashit($wp->request);
    5656
     57        if ($request === '') {
     58            return;
     59        }
     60
    5761        foreach ($this->customTable->getAllRules() as $rule) {
    5862            $tester = new RuleTester($rule);
     
    107111        }
    108112
    109         add_action('template_redirect', [$this, 'templateRedirect'], 0);
     113        add_action('template_redirect', [$this, 'templateRedirect']);
    110114    }
    111115}
  • ultimate-410/trunk/ultimate-410.php

    r3089509 r3092670  
    33 * Plugin Name: Ultimate 410
    44 * Description: Ultimate 410 HTTP Status Code plugin.
    5  * Version: 1.1.6
     5 * Version: 1.1.7
    66 * Author: tinyweb, 7iebenschlaefer, alpipego
    77 * Author URI: https://tinyweb.com/
Note: See TracChangeset for help on using the changeset viewer.