Changeset 2501219
- Timestamp:
- 03/22/2021 05:29:44 PM (5 years ago)
- Location:
- find-my-blocks
- Files:
-
- 6 edited
- 1 copied
-
tags/3.3.0 (copied) (copied from find-my-blocks/trunk)
-
tags/3.3.0/find-my-blocks.php (modified) (1 diff)
-
tags/3.3.0/inc/register-route.php (modified) (1 diff)
-
tags/3.3.0/readme.txt (modified) (1 diff)
-
trunk/find-my-blocks.php (modified) (1 diff)
-
trunk/inc/register-route.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
find-my-blocks/tags/3.3.0/find-my-blocks.php
r2499016 r2501219 4 4 * Plugin URI: https://find-my-blocks.eddysims.com 5 5 * Description: A plugin to find your gutenberg blocks 6 * Version: 3. 2.06 * Version: 3.3.0 7 7 * Author: Eddy Sims 8 8 * Author URI: https://eddysims.com -
find-my-blocks/tags/3.3.0/inc/register-route.php
r2463969 r2501219 190 190 'status' => $post->post_status, 191 191 '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', 193 193 ); 194 194 } else { -
find-my-blocks/tags/3.3.0/readme.txt
r2499016 r2501219 42 42 43 43 == Changelog == 44 45 **3.3.0** 46 47 - Uses `get_admin_url` for the `edit` link to avoid redirect loops. 44 48 45 49 **3.2.0** -
find-my-blocks/trunk/find-my-blocks.php
r2499016 r2501219 4 4 * Plugin URI: https://find-my-blocks.eddysims.com 5 5 * Description: A plugin to find your gutenberg blocks 6 * Version: 3. 2.06 * Version: 3.3.0 7 7 * Author: Eddy Sims 8 8 * Author URI: https://eddysims.com -
find-my-blocks/trunk/inc/register-route.php
r2463969 r2501219 190 190 'status' => $post->post_status, 191 191 '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', 193 193 ); 194 194 } else { -
find-my-blocks/trunk/readme.txt
r2499016 r2501219 42 42 43 43 == Changelog == 44 45 **3.3.0** 46 47 - Uses `get_admin_url` for the `edit` link to avoid redirect loops. 44 48 45 49 **3.2.0**
Note: See TracChangeset
for help on using the changeset viewer.