Plugin Directory

Changeset 686268


Ignore:
Timestamp:
03/23/2013 02:34:06 PM (13 years ago)
Author:
CiaranG
Message:

Changes for version 0.31

Location:
wp-simple-tracker/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-simple-tracker/trunk/readme.txt

    r602956 r686268  
    33Tags: issue tracker, tracker
    44Requires at least: 3.3
    5 Tested up to: 3.4.2
    6 Stable tag: 0.3
     5Tested up to: 3.5.1
     6Stable tag: 0.31
    77
    88Adds a simple issue tracking system to your WordPress blog.
     
    4545== Changelog ==
    4646
     47=0.31=
     48
     49*Fixed a problem where some instances of the star icon were being fetched
     50over http even when using https.
     51
    4752=0.3=
    4853
  • wp-simple-tracker/trunk/wp-simpletracker.php

    r602956 r686268  
    44Plugin URI: http://projects/ciarang.com/p/wp-simpletracker
    55Description: Adds a simple issue tracking system to WordPress
    6 Version: 0.3
     6Version: 0.31
    77Author: Ciaran Gultnieks, Mahmoud Sakr
    88Author URI: http://ciarang.com
     
    318318        $strike = $issue->status_strike ? 'strike' : '';
    319319        $issue->issue_time = date('F jS, Y @ h:i a', $issue->issue_time);
    320         $plugin_url = site_url() . '/wp-content/plugins/wp-simpletracker/';
     320        $plugin_url = plugin_dir_url(__FILE__);
    321321        $starred = $this->is_starred($user->ID, $id);
    322322        $header = $this->get_header();
     
    679679HTML;
    680680       
    681         $plugin_url = site_url() . '/wp-content/plugins/wp-simpletracker/';
     681        $plugin_url = plugin_dir_url(__FILE__);
    682682        $issues = $this->it_get_issues($tracker_id, $all);
    683683        foreach ($issues as $issue) {
Note: See TracChangeset for help on using the changeset viewer.