Plugin Directory

Changeset 772451


Ignore:
Timestamp:
09/14/2013 10:24:44 PM (13 years ago)
Author:
tickerator
Message:

fixed permalink bug and tagging 1.1.2

Location:
bugerator
Files:
2 edited
23 copied

Legend:

Unmodified
Added
Removed
  • bugerator/tags/1.1.2/bugerator.php

    r754291 r772451  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.1
     7  Version: 1.1.2
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    57075707        $page = get_permalink();
    57085708        if(false === $page)
    5709             return false;
     5709            $page=$_REQUEST['post_id'];
    57105710        if( false === strpos($page,"?"))
    57115711                $page .= "?";
     
    59285928        global $bugerator_project_table;
    59295929        global $bugerator_notes_table;
     5930        global $bugerator_subscriptions;
     5931        global $bugerator_visits_table;
    59305932
    59315933        // goodbye sweet database tables
     
    59385940
    59395941        $sql = "DROP TABLE " . $bugerator_notes_table . ";";
     5942        $wpdb->query($sql);
     5943
     5944        $sql = "DROP TABLE " . $bugerator_subscriptions . ";";
     5945        $wpdb->query($sql);
     5946
     5947        $sql = "DROP TABLE " . $bugerator_visits_table . ";";
    59405948        $wpdb->query($sql);
    59415949
  • bugerator/tags/1.1.2/readme.txt

    r754260 r772451  
    55Requires at least: 3.4.1
    66Tested up to: 3.6
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767
    6868== Changelog ==
     69
     70= 1.1.2 =
     71
     72* Gee permalinks are rough.  Should work in all cases now.
    6973
    7074= 1.1.1 =
     
    144148== Upgrade Notice ==
    145149
     150= 1.1.2 =
     151
     152Fixed permalink bug. You need to update.
     153
    146154= 1.1.1 =
    147155
  • bugerator/trunk/bugerator.php

    r754291 r772451  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.1
     7  Version: 1.1.2
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    57075707        $page = get_permalink();
    57085708        if(false === $page)
    5709             return false;
     5709            $page=$_REQUEST['post_id'];
    57105710        if( false === strpos($page,"?"))
    57115711                $page .= "?";
     
    59285928        global $bugerator_project_table;
    59295929        global $bugerator_notes_table;
     5930        global $bugerator_subscriptions;
     5931        global $bugerator_visits_table;
    59305932
    59315933        // goodbye sweet database tables
     
    59385940
    59395941        $sql = "DROP TABLE " . $bugerator_notes_table . ";";
     5942        $wpdb->query($sql);
     5943
     5944        $sql = "DROP TABLE " . $bugerator_subscriptions . ";";
     5945        $wpdb->query($sql);
     5946
     5947        $sql = "DROP TABLE " . $bugerator_visits_table . ";";
    59405948        $wpdb->query($sql);
    59415949
  • bugerator/trunk/readme.txt

    r754260 r772451  
    55Requires at least: 3.4.1
    66Tested up to: 3.6
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767
    6868== Changelog ==
     69
     70= 1.1.2 =
     71
     72* Gee permalinks are rough.  Should work in all cases now.
    6973
    7074= 1.1.1 =
     
    144148== Upgrade Notice ==
    145149
     150= 1.1.2 =
     151
     152Fixed permalink bug. You need to update.
     153
    146154= 1.1.1 =
    147155
Note: See TracChangeset for help on using the changeset viewer.