Changeset 1113996
- Timestamp:
- 03/16/2015 03:04:49 PM (11 years ago)
- Location:
- tracking-script-manager
- Files:
-
- 4 edited
- 1 copied
-
tags/1.1.2 (copied) (copied from tracking-script-manager/trunk)
-
tags/1.1.2/readme.txt (modified) (3 diffs)
-
tags/1.1.2/tracking-scripts-manager.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tracking-scripts-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tracking-script-manager/tags/1.1.2/readme.txt
r1099366 r1113996 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.1 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 44 44 == Changelog == 45 46 = 1.1.2 = 47 * Removed some unnecessary hooks 45 48 46 49 = 1.1.1 = … … 82 85 == Upgrade Notice == 83 86 87 = 1.1.2 = 88 Removed some unnecessary hooks 89 84 90 = 1.1.1 = 85 91 Fixed a few PHP warnings from last update -
tracking-script-manager/tags/1.1.2/tracking-scripts-manager.php
r1099366 r1113996 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.1. 16 * Version: 1.1.2 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 71 71 72 72 add_action( 'wp_ajax_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') ); 73 add_action( 'wp_ajax_nopriv_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') );74 73 75 74 add_action( 'wp_ajax_tracking_scripts_get_post_content', array(__CLASS__, 'tracking_scripts_post_content_ajax_handler') ); 76 add_action( 'wp_ajax_nopriv_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') );77 75 } 78 76 … … 300 298 public static function initialize_admin_posts() { 301 299 add_action('admin_post_save_new_tracking_codes', array(__CLASS__, 'save_new_tracking_codes')); // If the user is logged in 302 add_action('admin_post_nopriv_save_new_tracking_codes', array(__CLASS__, 'save_new_tracking_codes')); // If the user in not logged in303 304 300 add_action('admin_post_update_tracking_codes', array(__CLASS__, 'update_tracking_codes')); // If the user is logged in 305 add_action('admin_post_nopriv_update_tracking_codes', array(__CLASS__, 'update_tracking_codes')); // If the user in not logged in306 307 301 add_action('admin_post_update_page_tracking_codes', array(__CLASS__, 'update_page_tracking_codes')); // If the user is logged in 308 add_action('admin_post_nopriv_update_page_tracking_codes', array(__CLASS__, 'update_page_tracking_codes')); // If the user in not logged in309 302 } 310 303 -
tracking-script-manager/trunk/readme.txt
r1099366 r1113996 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.1 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 44 44 == Changelog == 45 46 = 1.1.2 = 47 * Removed some unnecessary hooks 45 48 46 49 = 1.1.1 = … … 82 85 == Upgrade Notice == 83 86 87 = 1.1.2 = 88 Removed some unnecessary hooks 89 84 90 = 1.1.1 = 85 91 Fixed a few PHP warnings from last update -
tracking-script-manager/trunk/tracking-scripts-manager.php
r1099366 r1113996 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.1. 16 * Version: 1.1.2 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 71 71 72 72 add_action( 'wp_ajax_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') ); 73 add_action( 'wp_ajax_nopriv_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') );74 73 75 74 add_action( 'wp_ajax_tracking_scripts_get_post_content', array(__CLASS__, 'tracking_scripts_post_content_ajax_handler') ); 76 add_action( 'wp_ajax_nopriv_tracking_scripts_get_posts', array(__CLASS__, 'tracking_scripts_posts_ajax_handler') );77 75 } 78 76 … … 300 298 public static function initialize_admin_posts() { 301 299 add_action('admin_post_save_new_tracking_codes', array(__CLASS__, 'save_new_tracking_codes')); // If the user is logged in 302 add_action('admin_post_nopriv_save_new_tracking_codes', array(__CLASS__, 'save_new_tracking_codes')); // If the user in not logged in303 304 300 add_action('admin_post_update_tracking_codes', array(__CLASS__, 'update_tracking_codes')); // If the user is logged in 305 add_action('admin_post_nopriv_update_tracking_codes', array(__CLASS__, 'update_tracking_codes')); // If the user in not logged in306 307 301 add_action('admin_post_update_page_tracking_codes', array(__CLASS__, 'update_page_tracking_codes')); // If the user is logged in 308 add_action('admin_post_nopriv_update_page_tracking_codes', array(__CLASS__, 'update_page_tracking_codes')); // If the user in not logged in309 302 } 310 303
Note: See TracChangeset
for help on using the changeset viewer.