Changeset 777429
- Timestamp:
- 09/23/2013 06:05:08 PM (13 years ago)
- Location:
- bugerator/trunk
- Files:
-
- 2 edited
-
bugerator.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bugerator/trunk/bugerator.php
r772944 r777429 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1. 37 Version: 1.1.4 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 33 33 // version info 34 34 global $bugerator_version; 35 $bugerator_version = "1.1. 3";35 $bugerator_version = "1.1.4"; 36 36 37 37 … … 199 199 $choice_menu = false; 200 200 // if there is only 1 then choose it 201 if ($bugerator_project_count == 1 )201 if ($bugerator_project_count == 1 ) 202 202 $project = $wpdb->get_var("SELECT id FROM $bugerator_project_table WHERE hidden = 0"); 203 203 $bugerator_project_id = $project; … … 4034 4034 4035 4035 $results = $wpdb->get_results($sql); 4036 4037 4036 $output = ""; 4038 4037 // show the navigation only when necessary … … 5865 5864 update_option("bugerator_statuses", "New,Open,Assigned,In Progress,Testing,Duplicate,Need Info,Resolved,Closed," . 5866 5865 "Abandoned,Completed"); 5867 update_option("bugerator_status_sort", "0,1,2,3,4,6,5,7,8,9,10", '', 'no'); 5868 update_option("bugerator_statuses_inuse", "0,1,2,3,4,5,6,7,8,9,10", '', 'no'); 5869 } 5866 update_option("bugerator_status_sort", "0,1,2,3,4,6,5,7,8,9,10"); 5867 update_option("bugerator_statuses_inuse", "0,1,2,3,4,5,6,7,8,9,10"); 5868 } 5869 5870 5870 5871 5871 5872 … … 5902 5903 copy("$path/bugerator-default.css", "$path/bugerator.css"); 5903 5904 5904 5905 // weird bug that killed the status sort 5906 $status_names = get_option('bugerator_statuses'); 5907 $status_sort = get_option('bugerator_status_sort'); 5908 $statuses_inuse = get_option('bugerator_statuses_inuse'); 5909 if(substr_count($status_names,",") != substr_count($status_sort,",") or 5910 substr_count($status_names,",") != substr_count($status_sort,",")) { 5911 $status_sort = "0"; 5912 $statuses_inuse = "0"; 5913 for($x=1;$x<(substr_count($status_names,",")+1);$x++) { 5914 $status_sort .= ",".$x; 5915 $statuses_inuse .= ",".$x; 5916 } 5917 echo $status_sort; 5918 echo $statuses_inuse; 5919 } 5920 update_option("bugerator_status_sort", $status_sort); 5921 update_option("bugerator_statuses_inuse", $statuses_inuse); 5922 5923 // get rid of comma on the front 5924 $project_display = get_option("bugerator_project_display"); 5925 if(substr($project_display,0,1) == ",") { 5926 $project_display = substr($project_display,1); 5927 update_option("bugerator_project_display",$project_display); 5928 } 5929 5930 5931 5932 5905 5933 update_option('bugerator_version', $bugerator_version); 5906 5934 } -
bugerator/trunk/readme.txt
r772854 r777429 5 5 Requires at least: 3.4.1 6 6 Tested up to: 3.6 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Changelog == 69 69 70 = 1.1.4 = 71 72 * Fixed spelling & small bugs 73 * Added ability to reverse option corruption 74 70 75 = 1.1.3 = 71 76 … … 153 158 == Upgrade Notice == 154 159 160 = 1.1.4 = 161 162 Backup bugerator.css file before updating if you customized it. Couple more new install bugs that needed to be fixed. 163 155 164 = 1.1.3 = 156 165
Note: See TracChangeset
for help on using the changeset viewer.