Plugin Directory

Changeset 959266


Ignore:
Timestamp:
08/02/2014 04:26:35 PM (12 years ago)
Author:
JHipkin
Message:

fixed tab issue

Location:
tracking-script-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tracking-script-manager/trunk/readme.txt

    r959255 r959266  
    55Requires at least: 3.0.1
    66Tested up to: 3.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4242== Changelog ==
    4343
     44= 1.0.2 =
     45* Fixes issue with tabs
     46
    4447= 1.0.1 =
    4548* Fixes a Javascript issue
     
    5053== Upgrade Notice ==
    5154
     55= 1.0.2 =
     56Fixes issue with tabs
     57
    5258= 1.0.1 =
    5359This upgrade fixes a Javascript issue with version 1.0.0
  • tracking-script-manager/trunk/tracking-scripts.php

    r959255 r959266  
    11<?php
    22    /**
    3     * Plugin Name: Tracking Scripts
     3    * Plugin Name: Tracking Script Manager
    44    * Plugin URI: http://red8interactive.com
    55    * Description: A plugin that allows you to add tracking scripts to your site.
    6     * Version: 1.0
     6    * Version: 1.0.2
    77    * Author: Red8 Interactive
    88    * Author URI: http://red8interactive.com
     
    116116                foreach($tabs as $tab => $name) {
    117117                    $class = ($tab == $current) ? ' nav-tab-active' : '';
    118                     echo "<a class='nav-tab$class' href='?page=tracking-scripts/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>";
    119119                }
    120120                echo '</h2>';
     
    218218               
    219219                wp_enqueue_script( 'tracking_script_js', plugin_dir_url(__FILE__) . '/js/main.js', array(), '', true );
     220               
     221               
    220222            }
    221223           
Note: See TracChangeset for help on using the changeset viewer.