Plugin Directory

Changeset 859779


Ignore:
Timestamp:
02/17/2014 11:59:54 PM (12 years ago)
Author:
kylereicks
Message:

bugfix update 2.0.3

Location:
headwp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • headwp/trunk/head-js-wp.php

    r858619 r859779  
    55Description: A plugin to load footer scripts with head.js
    66Author: Kyle Reicks
    7 Version: 2.0.2
     7Version: 2.0.3
    88Author URI: http://github.com/kylereicks/
    99*/
     
    1111define('HEAD_JS_WP_PATH', plugin_dir_path(__FILE__));
    1212define('HEAD_JS_WP_URL', plugins_url('/', __FILE__));
    13 define('HEAD_JS_WP_VERSION', '2.0.2');
     13define('HEAD_JS_WP_VERSION', '2.0.3');
    1414define('HEAD_JS_VERSION', '1.0.3');
    1515
  • headwp/trunk/inc/class-view-head-js-wp.php

    r856065 r859779  
    66      global $wp_scripts;
    77
    8       foreach($model->queue as $handle => $src){
    9         $wp_scripts->print_extra_script($handle);
     8      foreach($model->queue as $script){
     9        $wp_scripts->print_extra_script($script['handle']);
    1010      }
    1111
  • headwp/trunk/readme.txt

    r858619 r859779  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848== Changelog ==
    4949
     50= 2.0.3 =
     51* Fix reference error when localizing scripts.
     52
    5053= 2.0.2 =
    5154* Fix warning on log-in page.
     
    6568== Upgrade Notice ==
    6669
    67 = 2.0.2 =
    68 Bug fix update. Cleans up warning on the log-in page and supress output when no scripts need to be loaded.
     70= 2.0.3 =
     71Bug fix update. Cleans up reference error when localizing scripts.
Note: See TracChangeset for help on using the changeset viewer.