Changeset 959266
- Timestamp:
- 08/02/2014 04:26:35 PM (12 years ago)
- Location:
- tracking-script-manager/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
tracking-scripts.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tracking-script-manager/trunk/readme.txt
r959255 r959266 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.4 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 42 42 == Changelog == 43 43 44 = 1.0.2 = 45 * Fixes issue with tabs 46 44 47 = 1.0.1 = 45 48 * Fixes a Javascript issue … … 50 53 == Upgrade Notice == 51 54 55 = 1.0.2 = 56 Fixes issue with tabs 57 52 58 = 1.0.1 = 53 59 This upgrade fixes a Javascript issue with version 1.0.0 -
tracking-script-manager/trunk/tracking-scripts.php
r959255 r959266 1 1 <?php 2 2 /** 3 * Plugin Name: Tracking Script s3 * Plugin Name: Tracking Script Manager 4 4 * Plugin URI: http://red8interactive.com 5 5 * Description: A plugin that allows you to add tracking scripts to your site. 6 * Version: 1.0 6 * Version: 1.0.2 7 7 * Author: Red8 Interactive 8 8 * Author URI: http://red8interactive.com … … 116 116 foreach($tabs as $tab => $name) { 117 117 $class = ($tab == $current) ? ' nav-tab-active' : ''; 118 echo "<a class='nav-tab$class' href='?page=tracking-script s/tracking-scripts.php&tab=$tab'>$name</a>";118 echo "<a class='nav-tab$class' href='?page=tracking-script-manager/tracking-scripts.php&tab=$tab'>$name</a>"; 119 119 } 120 120 echo '</h2>'; … … 218 218 219 219 wp_enqueue_script( 'tracking_script_js', plugin_dir_url(__FILE__) . '/js/main.js', array(), '', true ); 220 221 220 222 } 221 223
Note: See TracChangeset
for help on using the changeset viewer.