Changeset 686268
- Timestamp:
- 03/23/2013 02:34:06 PM (13 years ago)
- Location:
- wp-simple-tracker/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-simpletracker.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-simple-tracker/trunk/readme.txt
r602956 r686268 3 3 Tags: issue tracker, tracker 4 4 Requires at least: 3.3 5 Tested up to: 3. 4.26 Stable tag: 0.3 5 Tested up to: 3.5.1 6 Stable tag: 0.31 7 7 8 8 Adds a simple issue tracking system to your WordPress blog. … … 45 45 == Changelog == 46 46 47 =0.31= 48 49 *Fixed a problem where some instances of the star icon were being fetched 50 over http even when using https. 51 47 52 =0.3= 48 53 -
wp-simple-tracker/trunk/wp-simpletracker.php
r602956 r686268 4 4 Plugin URI: http://projects/ciarang.com/p/wp-simpletracker 5 5 Description: Adds a simple issue tracking system to WordPress 6 Version: 0.3 6 Version: 0.31 7 7 Author: Ciaran Gultnieks, Mahmoud Sakr 8 8 Author URI: http://ciarang.com … … 318 318 $strike = $issue->status_strike ? 'strike' : ''; 319 319 $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__); 321 321 $starred = $this->is_starred($user->ID, $id); 322 322 $header = $this->get_header(); … … 679 679 HTML; 680 680 681 $plugin_url = site_url() . '/wp-content/plugins/wp-simpletracker/';681 $plugin_url = plugin_dir_url(__FILE__); 682 682 $issues = $this->it_get_issues($tracker_id, $all); 683 683 foreach ($issues as $issue) {
Note: See TracChangeset
for help on using the changeset viewer.