Plugin Directory

Changeset 2046274


Ignore:
Timestamp:
03/07/2019 08:46:54 PM (7 years ago)
Author:
burlingtonbytes
Message:

Fixed Settings page

Location:
wp-smartcrop
Files:
18 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-smartcrop/trunk/readme.txt

    r2046268 r2046274  
    110110
    111111== Changelog ==
     112= 2.0.2
     113* Fix admin url
    112114
    113115= 2.0.1
  • wp-smartcrop/trunk/wp-smartcrop.php

    r2046268 r2046274  
    44 * Plugin URI: http://www.wpsmartcrop.com/
    55 * Description: Style your images exactly how you want them to appear, for any screen size, and never get a cut-off face.
    6  * Version: 2.0.1
     6 * Version: 2.0.2
    77 * Author: Burlington Bytes
    88 * Author URI: https://www.burlingtonbytes.com
     
    1313if( !class_exists('WP_Smart_Crop') ) {
    1414    class WP_Smart_Crop {
    15         public  $version = '2.0.1';
     15        public  $version = '2.0.2';
    1616        private $plugin_dir_path;
    1717        private $plugin_dir_url;
     
    6767
    6868        function plugin_action_links( $links ) {
    69             $links[] = '<a href="'. esc_url( get_admin_url(null, 'tools.php?page=wp-smartcrop') ) .'">Settings</a>';
     69            $links[] = '<a href="'. esc_url( get_admin_url(null, 'options-general.php?page=wp-smartcrop') ) .'">Settings</a>';
    7070            $links[] = '<a href="http://www.wpsmartcrop.com/addons" target="_blank">Get Addons</a>';
    7171            return $links;
Note: See TracChangeset for help on using the changeset viewer.