Plugin Directory

Changeset 3364450


Ignore:
Timestamp:
09/19/2025 10:05:11 AM (6 months ago)
Author:
sasiddiqui
Message:

Bump to v3.1.1

Location:
custom-permalinks
Files:
8 added
6 deleted
5 edited
51 copied

Legend:

Unmodified
Added
Removed
  • custom-permalinks/tags/3.1.1/custom-permalinks.php

    r3337737 r3364450  
    44 * Plugin URI: https://www.custompermalinks.com/
    55 * Description: Set custom permalinks on a per-post basis.
    6  * Version: 3.1.0
     6 * Version: 3.1.1
    77 * Requires at least: 2.6
    88 * Requires PHP: 7.0
  • custom-permalinks/tags/3.1.1/includes/class-custom-permalinks-form.php

    r3337737 r3364450  
    8787     */
    8888    private function is_permalink_customizable( $post ) {
     89        if ( ! is_object( $post ) ) {
     90            return false;
     91        }
     92
    8993        $exclude_post_types = apply_filters(
    9094            'custom_permalinks_exclude_post_type',
  • custom-permalinks/tags/3.1.1/includes/class-custom-permalinks-frontend.php

    r3332293 r3364450  
    742742        $custom_permalink   = '';
    743743        $original_permalink = '';
    744         $get_post_id        = url_to_postid( $this->request_uri );
     744
     745        remove_filter( 'url_to_postid', array( $this, 'postid_to_customized_permalink' ) );
     746        $get_post_id = url_to_postid( $this->request_uri );
     747        add_filter( 'url_to_postid', array( $this, 'postid_to_customized_permalink' ), 10, 1 );
    745748
    746749        // Redirect original post permalink.
  • custom-permalinks/tags/3.1.1/includes/class-custom-permalinks.php

    r3337737 r3364450  
    1919     * @var string
    2020     */
    21     public $version = '3.1.0';
     21    public $version = '3.1.1';
    2222
    2323    /**
  • custom-permalinks/tags/3.1.1/readme.txt

    r3337737 r3364450  
    55Requires PHP: 5.6
    66Tested up to: 6.8
    7 Stable tag: 3.1.0
     7Stable tag: 3.1.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    8282== Changelog ==
    8383
     84= 3.1.1 - Sep 19, 2025 =
     85
     86* Bugs:
     87  * [PHP 8.x Warnings Admin](https://wordpress.org/support/topic/php-8-x-warnings-admin/)
     88    * [Polylang Redirect Issue](https://wordpress.org/support/topic/polylang-redirect-issue-2/)
     89    * [Lost password link conflict](https://wordpress.org/support/topic/lost-password-link-conflict/)
     90    * [Custom Permalinks is conflicting with Gravity View plugin](https://wordpress.org/support/topic/custom-permalinks-is-conflicting-with-gravity-view-plugin/)
     91
    8492= 3.1.0 - Aug 01, 2025 =
    8593
  • custom-permalinks/trunk/custom-permalinks.php

    r3337737 r3364450  
    44 * Plugin URI: https://www.custompermalinks.com/
    55 * Description: Set custom permalinks on a per-post basis.
    6  * Version: 3.1.0
     6 * Version: 3.1.1
    77 * Requires at least: 2.6
    88 * Requires PHP: 7.0
  • custom-permalinks/trunk/includes/class-custom-permalinks-form.php

    r3337737 r3364450  
    8787     */
    8888    private function is_permalink_customizable( $post ) {
     89        if ( ! is_object( $post ) ) {
     90            return false;
     91        }
     92
    8993        $exclude_post_types = apply_filters(
    9094            'custom_permalinks_exclude_post_type',
  • custom-permalinks/trunk/includes/class-custom-permalinks-frontend.php

    r3332293 r3364450  
    742742        $custom_permalink   = '';
    743743        $original_permalink = '';
    744         $get_post_id        = url_to_postid( $this->request_uri );
     744
     745        remove_filter( 'url_to_postid', array( $this, 'postid_to_customized_permalink' ) );
     746        $get_post_id = url_to_postid( $this->request_uri );
     747        add_filter( 'url_to_postid', array( $this, 'postid_to_customized_permalink' ), 10, 1 );
    745748
    746749        // Redirect original post permalink.
  • custom-permalinks/trunk/includes/class-custom-permalinks.php

    r3337737 r3364450  
    1919     * @var string
    2020     */
    21     public $version = '3.1.0';
     21    public $version = '3.1.1';
    2222
    2323    /**
  • custom-permalinks/trunk/readme.txt

    r3337737 r3364450  
    55Requires PHP: 5.6
    66Tested up to: 6.8
    7 Stable tag: 3.1.0
     7Stable tag: 3.1.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    8282== Changelog ==
    8383
     84= 3.1.1 - Sep 19, 2025 =
     85
     86* Bugs:
     87  * [PHP 8.x Warnings Admin](https://wordpress.org/support/topic/php-8-x-warnings-admin/)
     88    * [Polylang Redirect Issue](https://wordpress.org/support/topic/polylang-redirect-issue-2/)
     89    * [Lost password link conflict](https://wordpress.org/support/topic/lost-password-link-conflict/)
     90    * [Custom Permalinks is conflicting with Gravity View plugin](https://wordpress.org/support/topic/custom-permalinks-is-conflicting-with-gravity-view-plugin/)
     91
    8492= 3.1.0 - Aug 01, 2025 =
    8593
Note: See TracChangeset for help on using the changeset viewer.