Plugin Directory

Changeset 216165


Ignore:
Timestamp:
03/11/2010 11:16:38 AM (16 years ago)
Author:
dugbug
Message:

0.9.3

Location:
easy-chart-builder/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • easy-chart-builder/trunk/easy-chart-builder.php

    r216041 r216165  
    22/*
    33Plugin Name: Easy Chart Builder
    4 Version: 0.9.2
     4Version: 0.9.3
    55Plugin URI: http://www.dyerware.com/main/easy-chart-builder
    66Description: Creates a chart directly in your post or page via shortcut.  Manages sizing of chart to support wptouch and other mobile themes.
     
    8686   function add_admin_files()
    8787    {   
    88         $jsDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) ) . '/js/';
     88        $plgDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) );
    8989           
    9090        if ( isset( $_GET['page'] ) && $_GET['page'] == 'easy-chart-builder/easy-chart-builder.php' )
    9191        {
    92             echo "<link rel='stylesheet' media='screen' type='text/css' href='" . compat_get_plugin_url( "easy-chart-builder") . "/colorpicker/code/colorpicker.css' />\n";
    93             echo "<script type='text/javascript' src='" . compat_get_plugin_url( "easy-chart-builder") . "/colorpicker/code/colorpicker.js'></script>\n";
     92            echo "<link rel='stylesheet' media='screen' type='text/css' href='" . $plgDir . "/colorpicker/code/colorpicker.css' />\n";
     93            echo "<script type='text/javascript' src='" . $plgDir . "/colorpicker/code/colorpicker.js'></script>\n";
    9494 
    9595   
     
    235235        if ($this->installScripts == false)
    236236        {
     237           $plgDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) );
    237238           $this->installScripts = true;
    238            $header = "<script type='text/javascript' src='" . compat_get_plugin_url( "easy-chart-builder") . "/js/easy-chart-builder.js'></script>\n";
     239           $header = "<script type='text/javascript' src='" . $plgDir . "/js/easy-chart-builder.js'></script>\n";
    239240        }
    240241       
  • easy-chart-builder/trunk/readme.txt

    r216041 r216165  
    66Requires at least: 2.8
    77Tested up to: 2.9.2
    8 Stable tag: 0.9.2
     8Stable tag: 0.9.3
    99
    1010This plugin allows you to easily create charts within your blog by use of shortcodes.
     
    7171== Upgrade Notice ==
    7272
     73= 0.9.3 =
     74Compatibility issue with plugin dir.
     75
    7376= 0.9.2 =
    7477Admin panel color fields are now visual and feature color pickers.  widget fix.
     
    103106
    104107== Changelog ==
     108
     109= 0.9.3 =
     110 * Compatibility issue with plugin dir.
    105111
    106112= 0.9.2 =
Note: See TracChangeset for help on using the changeset viewer.