Changeset 2172253
- Timestamp:
- 10/12/2019 08:18:53 PM (6 years ago)
- Location:
- bugerator
- Files:
-
- 4 edited
- 3 copied
-
tags/1.1.8.2 (copied) (copied from bugerator/trunk)
-
tags/1.1.8.2/bugerator.php (copied) (copied from bugerator/trunk/bugerator.php) (3 diffs)
-
tags/1.1.8.2/bugerator_options_general_tpl.php (modified) (1 diff)
-
tags/1.1.8.2/readme.txt (copied) (copied from bugerator/trunk/readme.txt) (1 diff)
-
trunk/bugerator.php (modified) (3 diffs)
-
trunk/bugerator_options_general_tpl.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bugerator/tags/1.1.8.2/bugerator.php
r2172051 r2172253 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1.8. 17 Version: 1.1.8.2 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 180 180 wp_enqueue_script(array('jquery')); 181 181 182 183 date_default_timezone_set(get_option('timezone_string')); 182 // Commenting this out. It is generating an error if timezone_string isn't properly set 183 // and I think we can do ok without it. 184 //date_default_timezone_set(get_option('timezone_string')); 184 185 global $bugerator_project_id; 185 186 // if there is a shortcode in the project then take away the option to change it. … … 5948 5949 add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' . 5949 5950 'long_date_format|m/d/Y H:i:s T,margin|0,filesize|1048576,navtabsize|,anonymous_comments|false' . 5950 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no'); 5951 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false' . 5952 ',email_on_assignment|false', '', 'no'); 5951 5953 add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no'); 5952 5954 -
bugerator/tags/1.1.8.2/bugerator_options_general_tpl.php
r2169751 r2172253 58 58 <td class="bugerator bugerator_options_gerneral form_right" > 59 59 <input type="checkbox" name="email_on_assignment" 60 <?PHP if ($options['email_on_assignment'] == "true") echo "CHECKED" ?> /> Yes if checked. 60 <?PHP if (isset($options['email_on_assignment']) and 61 $options['email_on_assignment'] == "true") echo "CHECKED" ?> /> Yes if checked. 61 62 </td> 62 63 </tr> <tr class="bugerator bugerator_options_general" > -
bugerator/tags/1.1.8.2/readme.txt
r2172051 r2172253 68 68 == Changelog == 69 69 70 = 1.1.8.1= 70 = 1.1.8.2 = 71 72 * Notice when timezone isn't set in wp options 73 74 = 1.1.8.1 = 71 75 72 76 * Minor bug when installing from scratch -
bugerator/trunk/bugerator.php
r2172051 r2172253 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1.8. 17 Version: 1.1.8.2 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 180 180 wp_enqueue_script(array('jquery')); 181 181 182 183 date_default_timezone_set(get_option('timezone_string')); 182 // Commenting this out. It is generating an error if timezone_string isn't properly set 183 // and I think we can do ok without it. 184 //date_default_timezone_set(get_option('timezone_string')); 184 185 global $bugerator_project_id; 185 186 // if there is a shortcode in the project then take away the option to change it. … … 5948 5949 add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' . 5949 5950 'long_date_format|m/d/Y H:i:s T,margin|0,filesize|1048576,navtabsize|,anonymous_comments|false' . 5950 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no'); 5951 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false' . 5952 ',email_on_assignment|false', '', 'no'); 5951 5953 add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no'); 5952 5954 -
bugerator/trunk/bugerator_options_general_tpl.php
r2169751 r2172253 58 58 <td class="bugerator bugerator_options_gerneral form_right" > 59 59 <input type="checkbox" name="email_on_assignment" 60 <?PHP if ($options['email_on_assignment'] == "true") echo "CHECKED" ?> /> Yes if checked. 60 <?PHP if (isset($options['email_on_assignment']) and 61 $options['email_on_assignment'] == "true") echo "CHECKED" ?> /> Yes if checked. 61 62 </td> 62 63 </tr> <tr class="bugerator bugerator_options_general" > -
bugerator/trunk/readme.txt
r2172051 r2172253 68 68 == Changelog == 69 69 70 = 1.1.8.1= 70 = 1.1.8.2 = 71 72 * Notice when timezone isn't set in wp options 73 74 = 1.1.8.1 = 71 75 72 76 * Minor bug when installing from scratch
Note: See TracChangeset
for help on using the changeset viewer.