Changeset 2330113
- Timestamp:
- 06/24/2020 04:16:06 PM (6 years ago)
- Location:
- wp-easy-gallery/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-easy-gallery.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-easy-gallery/trunk/readme.txt
r2284608 r2330113 6 6 Tested up to: 5.4 7 7 Requires PHP: 5.6 8 Stable tag: 4.8. 48 Stable tag: 4.8.5 9 9 10 10 WP Easy Gallery is a powerful WordPress gallery plugin that is easy to use. WP Easy Gallery gives you the power to create and manage unlimited image galleries. … … 152 152 == Changelog == 153 153 154 **v4.8.5** 155 156 * Removed deprecated constants. 157 154 158 **v4.8.4** 155 159 -
wp-easy-gallery/trunk/wp-easy-gallery.php
r2254779 r2330113 7 7 Text Domain: wp-easy-gallery 8 8 Domain Path: /languages 9 Version: 4.8. 49 Version: 4.8.5 10 10 Author URI: https://plugingarden.com/ 11 11 */ … … 17 17 public function __construct() { 18 18 $this->plugin_name = plugin_basename(__FILE__); 19 $this->plugin_version = "4.8. 4";19 $this->plugin_version = "4.8.5"; 20 20 $this->db_version = "1.3"; 21 21 22 22 $this->define_tables(); 23 $this->define_constants();24 23 $this->define_options(); 25 24 … … 58 57 $wpdb->easyGalleries = $wpdb->prefix . 'easy_gallery'; 59 58 $wpdb->easyImages = $wpdb->prefix . 'easy_gallery_images'; 60 }61 62 public function define_constants()63 {64 if ( ! defined( 'HCGGALLERY_PLUGIN_BASENAME' ) )65 define( 'HCGGALLERY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );66 67 if ( ! defined( 'HCGGALLERY_PLUGIN_NAME' ) )68 define( 'HCGGALLERY_PLUGIN_NAME', trim( dirname( HCGGALLERY_PLUGIN_BASENAME ), '/' ) );69 70 if ( ! defined( 'HCGGALLERY_PLUGIN_DIR' ) )71 define( 'HCGGALLERY_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . HCGGALLERY_PLUGIN_NAME );72 59 } 73 60
Note: See TracChangeset
for help on using the changeset viewer.