Changeset 772451
- Timestamp:
- 09/14/2013 10:24:44 PM (13 years ago)
- Location:
- bugerator
- Files:
-
- 2 edited
- 23 copied
-
tags/1.1.2 (copied) (copied from bugerator/trunk)
-
tags/1.1.2/bugerator.php (copied) (copied from bugerator/trunk/bugerator.php) (4 diffs)
-
tags/1.1.2/bugerator_add_issue_tpl.php (copied) (copied from bugerator/trunk/bugerator_add_issue_tpl.php)
-
tags/1.1.2/bugerator_admin.js (copied) (copied from bugerator/trunk/bugerator_admin.js)
-
tags/1.1.2/bugerator_admin_edit_project_admins_tpl.php (copied) (copied from bugerator/trunk/bugerator_admin_edit_project_admins_tpl.php)
-
tags/1.1.2/bugerator_admin_edit_project_tpl.php (copied) (copied from bugerator/trunk/bugerator_admin_edit_project_tpl.php)
-
tags/1.1.2/bugerator_admin_nav_tpl.php (copied) (copied from bugerator/trunk/bugerator_admin_nav_tpl.php)
-
tags/1.1.2/bugerator_admin_tpl.php (copied) (copied from bugerator/trunk/bugerator_admin_tpl.php)
-
tags/1.1.2/bugerator_admin_view_projects_tpl.php (copied) (copied from bugerator/trunk/bugerator_admin_view_projects_tpl.php)
-
tags/1.1.2/bugerator_choose_project_tpl.php (copied) (copied from bugerator/trunk/bugerator_choose_project_tpl.php)
-
tags/1.1.2/bugerator_comment_display_tpl.php (copied) (copied from bugerator/trunk/bugerator_comment_display_tpl.php)
-
tags/1.1.2/bugerator_comment_form_tpl.php (copied) (copied from bugerator/trunk/bugerator_comment_form_tpl.php)
-
tags/1.1.2/bugerator_issue_admin_edit_tpl.php (copied) (copied from bugerator/trunk/bugerator_issue_admin_edit_tpl.php)
-
tags/1.1.2/bugerator_issue_detail_tpl.php (copied) (copied from bugerator/trunk/bugerator_issue_detail_tpl.php)
-
tags/1.1.2/bugerator_issue_list_tpl.php (copied) (copied from bugerator/trunk/bugerator_issue_list_tpl.php)
-
tags/1.1.2/bugerator_options_general_tpl.php (copied) (copied from bugerator/trunk/bugerator_options_general_tpl.php)
-
tags/1.1.2/bugerator_options_project_tpl.php (copied) (copied from bugerator/trunk/bugerator_options_project_tpl.php)
-
tags/1.1.2/bugerator_options_status_colors_tpl.php (copied) (copied from bugerator/trunk/bugerator_options_status_colors_tpl.php)
-
tags/1.1.2/bugerator_show_map_tpl.php (copied) (copied from bugerator/trunk/bugerator_show_map_tpl.php)
-
tags/1.1.2/bugerator_updates_display_tpl.php (copied) (copied from bugerator/trunk/bugerator_updates_display_tpl.php)
-
tags/1.1.2/bugerator_updates_menu_tpl.php (copied) (copied from bugerator/trunk/bugerator_updates_menu_tpl.php)
-
tags/1.1.2/bugerator_user_profile_tpl.php (copied) (copied from bugerator/trunk/bugerator_user_profile_tpl.php)
-
tags/1.1.2/readme.txt (copied) (copied from bugerator/trunk/readme.txt) (3 diffs)
-
trunk/bugerator.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bugerator/tags/1.1.2/bugerator.php
r754291 r772451 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 5707 5707 $page = get_permalink(); 5708 5708 if(false === $page) 5709 return false;5709 $page=$_REQUEST['post_id']; 5710 5710 if( false === strpos($page,"?")) 5711 5711 $page .= "?"; … … 5928 5928 global $bugerator_project_table; 5929 5929 global $bugerator_notes_table; 5930 global $bugerator_subscriptions; 5931 global $bugerator_visits_table; 5930 5932 5931 5933 // goodbye sweet database tables … … 5938 5940 5939 5941 $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 . ";"; 5940 5948 $wpdb->query($sql); 5941 5949 -
bugerator/tags/1.1.2/readme.txt
r754260 r772451 5 5 Requires at least: 3.4.1 6 6 Tested up to: 3.6 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 70 = 1.1.2 = 71 72 * Gee permalinks are rough. Should work in all cases now. 69 73 70 74 = 1.1.1 = … … 144 148 == Upgrade Notice == 145 149 150 = 1.1.2 = 151 152 Fixed permalink bug. You need to update. 153 146 154 = 1.1.1 = 147 155 -
bugerator/trunk/bugerator.php
r754291 r772451 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 5707 5707 $page = get_permalink(); 5708 5708 if(false === $page) 5709 return false;5709 $page=$_REQUEST['post_id']; 5710 5710 if( false === strpos($page,"?")) 5711 5711 $page .= "?"; … … 5928 5928 global $bugerator_project_table; 5929 5929 global $bugerator_notes_table; 5930 global $bugerator_subscriptions; 5931 global $bugerator_visits_table; 5930 5932 5931 5933 // goodbye sweet database tables … … 5938 5940 5939 5941 $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 . ";"; 5940 5948 $wpdb->query($sql); 5941 5949 -
bugerator/trunk/readme.txt
r754260 r772451 5 5 Requires at least: 3.4.1 6 6 Tested up to: 3.6 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 70 = 1.1.2 = 71 72 * Gee permalinks are rough. Should work in all cases now. 69 73 70 74 = 1.1.1 = … … 144 148 == Upgrade Notice == 145 149 150 = 1.1.2 = 151 152 Fixed permalink bug. You need to update. 153 146 154 = 1.1.1 = 147 155
Note: See TracChangeset
for help on using the changeset viewer.