Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #19929: Support 'due date' in group actions #737

Closed

Conversation

lukelee1124
Copy link
Contributor

Issue: https://www.mantisbt.org/bugs/view.php?id=19929

Add new action to drop down menu in the 'View Issues' page to edit the due_date for more than one issue at a time.

$t_due_date = gpc_get_string( 'due_date', null );
if( $t_due_date !== null ) {
if( is_blank( $t_due_date ) ) {
$t_due_date = 1;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use magic numbers. Use the following:
$t_due_date = date_get_null();

@vboctor
Copy link
Member

vboctor commented Mar 15, 2016

👍 looks good. Thanks @lukelee1124

dregad pushed a commit that referenced this pull request Mar 19, 2016
PR #737

Signed-off-by: Damien Regad <dregad@mantisbt.org>

Original commit modified to use new date_strtotime() API.
@dregad
Copy link
Member

dregad commented Mar 19, 2016

Merged. Thanks for your contribution !

@dregad dregad closed this Mar 19, 2016
@dregad dregad added the merged label Mar 19, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
3 participants