Changeset 734806
- Timestamp:
- 07/01/2013 09:13:41 PM (13 years ago)
- Location:
- rj-quickcharts/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
menu/init.php (modified) (1 diff)
-
rj_charts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rj-quickcharts/trunk/README.txt
r734794 r734806 7 7 Requires at least: 3.3 8 8 Tested up to: 3.5 9 Stable tag: 0.4. 19 Stable tag: 0.4.2 10 10 11 11 Create incredible HTML5/JavaScript charts right inside WordPress with a few clicks. … … 44 44 == Changelog == 45 45 46 = 0.4.2 = 47 * Only Admins and Authors can edit charts now 48 46 49 = 0.4.1 = 47 50 * Pie chart support added -
rj-quickcharts/trunk/menu/init.php
r727984 r734806 12 12 public function init() 13 13 { 14 add_action('admin_menu', array(&$this, 'register_my_custom_menu_page')); 15 add_action('admin_footer', array(&$this, 'css_for_rjqc_admin_menu')); 14 if ( current_user_can('edit_others_posts') ) { 15 add_action('admin_menu', array(&$this, 'register_my_custom_menu_page')); 16 add_action('admin_footer', array(&$this, 'css_for_rjqc_admin_menu')); 17 } 16 18 } 17 19 -
rj-quickcharts/trunk/rj_charts.php
r734794 r734806 4 4 Plugin URI: http://www.randyjensen.com 5 5 Description: Easily create charts for your WordPress site. Line charts, bar charts and pie charts currently supported. 6 Version: 0.4. 16 Version: 0.4.2 7 7 Author: Randy Jensen 8 8 Author URI: http://www.randyjensen.com … … 15 15 global $table_name; 16 16 17 $rjqc_db_version = '0.4. 1';17 $rjqc_db_version = '0.4.2'; 18 18 $table_name = $wpdb->prefix . 'rj_quickcharts'; 19 19
Note: See TracChangeset
for help on using the changeset viewer.