Plugin Directory

Changeset 2172253


Ignore:
Timestamp:
10/12/2019 08:18:53 PM (6 years ago)
Author:
tickerator
Message:

Tagging version 1.1.8.2 - minor bug fixes

Location:
bugerator
Files:
4 edited
3 copied

Legend:

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

    r2172051 r2172253  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.8.1
     7  Version: 1.1.8.2
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    180180    wp_enqueue_script(array('jquery'));
    181181
    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'));
    184185    global $bugerator_project_id;
    185186    // if there is a shortcode in the project then take away the option to change it.
     
    59485949        add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' .
    59495950                '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');
    59515953        add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no');
    59525954
  • bugerator/tags/1.1.8.2/bugerator_options_general_tpl.php

    r2169751 r2172253  
    5858            <td class="bugerator bugerator_options_gerneral form_right" >
    5959                <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.
    6162            </td>
    6263        </tr>        <tr class="bugerator bugerator_options_general" >
  • bugerator/tags/1.1.8.2/readme.txt

    r2172051 r2172253  
    6868== Changelog ==
    6969
    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 =
    7175
    7276* Minor bug when installing from scratch
  • bugerator/trunk/bugerator.php

    r2172051 r2172253  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.8.1
     7  Version: 1.1.8.2
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    180180    wp_enqueue_script(array('jquery'));
    181181
    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'));
    184185    global $bugerator_project_id;
    185186    // if there is a shortcode in the project then take away the option to change it.
     
    59485949        add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' .
    59495950                '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');
    59515953        add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no');
    59525954
  • bugerator/trunk/bugerator_options_general_tpl.php

    r2169751 r2172253  
    5858            <td class="bugerator bugerator_options_gerneral form_right" >
    5959                <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.
    6162            </td>
    6263        </tr>        <tr class="bugerator bugerator_options_general" >
  • bugerator/trunk/readme.txt

    r2172051 r2172253  
    6868== Changelog ==
    6969
    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 =
    7175
    7276* Minor bug when installing from scratch
Note: See TracChangeset for help on using the changeset viewer.