Changeset 1231034
- Timestamp:
- 08/26/2015 08:48:43 AM (11 years ago)
- Location:
- kopatheme/trunk
- Files:
-
- 3 edited
-
includes/abstracts/abstract-kopa-widget.php (modified) (1 diff)
-
kopa-framework.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kopatheme/trunk/includes/abstracts/abstract-kopa-widget.php
r1208795 r1231034 46 46 ); 47 47 48 $this->WP_Widget( $this->widget_id, $this->widget_name, $widget_ops, $control_ops );48 parent::__construct( $this->widget_id, $this->widget_name, $widget_ops, $control_ops ); 49 49 50 50 add_action( 'save_post', array( $this, 'flush_widget_cache' ) ); -
kopatheme/trunk/kopa-framework.php
r1208795 r1231034 3 3 * Plugin Name: Kopa Framework 4 4 * Description: A WordPress framework by Kopatheme. 5 * Version: 1.0. 85 * Version: 1.0.9 6 6 * Author: Kopa Theme 7 7 * Author URI: http://kopatheme.com 8 8 * License: GPLv2 or later 9 9 * Requires at least: 3.8 10 * Tested up to: 4. 010 * Tested up to: 4.3 11 11 * 12 12 * Text Domain: kopa-framework … … 35 35 * @var string framework version 36 36 */ 37 public $version = '1.0. 7';37 public $version = '1.0.9'; 38 38 39 39 /** -
kopatheme/trunk/readme.txt
r1208795 r1231034 4 4 Donate link: 5 5 Requires at least: 3.8 6 Tested up to: 4. 07 Stable tag: 1.0. 76 Tested up to: 4.3 7 Stable tag: 1.0.9 8 8 License: GPLv2 or later 9 9 … … 21 21 22 22 == Changelog == 23 = 1.0.9 = 24 * Fix: "The Called Constructor Method For WP_Widget Is Deprecated Since Version 4.3.0! Use __construct()". 23 25 24 26 = 1.0.8 =
Note: See TracChangeset
for help on using the changeset viewer.