Plugin Directory

Changeset 2501219


Ignore:
Timestamp:
03/22/2021 05:29:44 PM (5 years ago)
Author:
edeesims
Message:

Update to version 3.3.0 from GitHub

Location:
find-my-blocks
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • find-my-blocks/tags/3.3.0/find-my-blocks.php

    r2499016 r2501219  
    44 * Plugin URI: https://find-my-blocks.eddysims.com
    55 * Description: A plugin to find your gutenberg blocks
    6  * Version: 3.2.0
     6 * Version: 3.3.0
    77 * Author: Eddy Sims
    88 * Author URI: https://eddysims.com
  • find-my-blocks/tags/3.3.0/inc/register-route.php

    r2463969 r2501219  
    190190            'status'          => $post->post_status,
    191191            'post_url'        => get_permalink( $post->ID ),
    192             'edit_url'        => home_url( '/wp-admin/post.php?post=' . $post->ID . '&action=edit' ),
     192            'edit_url'        => get_admin_url() . 'post.php?post=' . $post->ID . '&action=edit',
    193193        );
    194194    } else {
  • find-my-blocks/tags/3.3.0/readme.txt

    r2499016 r2501219  
    4242
    4343== Changelog ==
     44
     45**3.3.0**
     46
     47- Uses `get_admin_url` for the `edit` link to avoid redirect loops.
    4448
    4549**3.2.0**
  • find-my-blocks/trunk/find-my-blocks.php

    r2499016 r2501219  
    44 * Plugin URI: https://find-my-blocks.eddysims.com
    55 * Description: A plugin to find your gutenberg blocks
    6  * Version: 3.2.0
     6 * Version: 3.3.0
    77 * Author: Eddy Sims
    88 * Author URI: https://eddysims.com
  • find-my-blocks/trunk/inc/register-route.php

    r2463969 r2501219  
    190190            'status'          => $post->post_status,
    191191            'post_url'        => get_permalink( $post->ID ),
    192             'edit_url'        => home_url( '/wp-admin/post.php?post=' . $post->ID . '&action=edit' ),
     192            'edit_url'        => get_admin_url() . 'post.php?post=' . $post->ID . '&action=edit',
    193193        );
    194194    } else {
  • find-my-blocks/trunk/readme.txt

    r2499016 r2501219  
    4242
    4343== Changelog ==
     44
     45**3.3.0**
     46
     47- Uses `get_admin_url` for the `edit` link to avoid redirect loops.
    4448
    4549**3.2.0**
Note: See TracChangeset for help on using the changeset viewer.