Changeset 1092709
- Timestamp:
- 02/17/2015 07:04:33 PM (11 years ago)
- Location:
- tracking-script-manager
- Files:
-
- 5 edited
- 1 copied
-
tags/1.0.8/tracking-scripts.php (modified) (3 diffs)
-
tags/1.0.9 (copied) (copied from tracking-script-manager/trunk)
-
tags/1.0.9/readme.txt (modified) (3 diffs)
-
tags/1.0.9/tracking-scripts.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tracking-scripts.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tracking-script-manager/tags/1.0.8/tracking-scripts.php
r1092690 r1092709 4 4 * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/ 5 5 * Description: A plugin that allows you to add tracking scripts to your site. 6 * Version: 1.0. 86 * Version: 1.0.9 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 101 101 add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), ''); 102 102 add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings')); 103 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));104 103 } 105 104 … … 121 120 122 121 public static function tracking_options() { 122 self::tracking_scripts_admin_scripts(); 123 123 124 global $pagenow; 124 125 $settings = get_option('tracking_scripts_settings'); -
tracking-script-manager/tags/1.0.9/readme.txt
r1092690 r1092709 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.0 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 1.0.9 = 46 * Cleaning up script enqueuing 47 45 48 = 1.0.8 = 46 49 * Fixed issues causing some conflicts with WP styling … … 72 75 == Upgrade Notice == 73 76 77 = 1.0.9 = 78 Cleaning up script enqueuing 79 74 80 = 1.0.8 = 75 81 Fixed issues causing some conflicts with WP styling -
tracking-script-manager/tags/1.0.9/tracking-scripts.php
r1092690 r1092709 4 4 * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/ 5 5 * Description: A plugin that allows you to add tracking scripts to your site. 6 * Version: 1.0. 86 * Version: 1.0.9 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 101 101 add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), ''); 102 102 add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings')); 103 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));104 103 } 105 104 … … 121 120 122 121 public static function tracking_options() { 122 self::tracking_scripts_admin_scripts(); 123 123 124 global $pagenow; 124 125 $settings = get_option('tracking_scripts_settings'); -
tracking-script-manager/trunk/readme.txt
r1092690 r1092709 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.0 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 1.0.9 = 46 * Cleaning up script enqueuing 47 45 48 = 1.0.8 = 46 49 * Fixed issues causing some conflicts with WP styling … … 72 75 == Upgrade Notice == 73 76 77 = 1.0.9 = 78 Cleaning up script enqueuing 79 74 80 = 1.0.8 = 75 81 Fixed issues causing some conflicts with WP styling -
tracking-script-manager/trunk/tracking-scripts.php
r1092690 r1092709 4 4 * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/ 5 5 * Description: A plugin that allows you to add tracking scripts to your site. 6 * Version: 1.0. 86 * Version: 1.0.9 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 101 101 add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), ''); 102 102 add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings')); 103 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));104 103 } 105 104 … … 121 120 122 121 public static function tracking_options() { 122 self::tracking_scripts_admin_scripts(); 123 123 124 global $pagenow; 124 125 $settings = get_option('tracking_scripts_settings');
Note: See TracChangeset
for help on using the changeset viewer.