View Issue Details

IDProjectCategoryView StatusLast Update
0011819mantisbtapi soappublic2010-04-23 14:30
Reporterstarling Assigned Torombert  
PriorityurgentSeveritymajorReproducibilityalways
Status closedResolutionfixed 
PlatformWindowsOSWindows Vista 
Product Version1.2.0 
Target Version1.2.1Fixed in Version1.2.1 
Summary0011819: Mylyn Mantis Task Update Failure
Description

During task update appears error in DB update: ... incorrect integer value: '' for column 'sponsorship_total' ...

Steps To Reproduce

It is caused by wrong assignment:
msc_issue_api.php L646 mc_issue_update()

WRONG:
$t_sponsorship_total = isset( $p_issue['sponsorship_total'] ) ? $p_issue['sponsorship_total'] : '';
RIGHT:
$t_sponsorship_total = isset( $p_issue['sponsorship_total'] ) ? $p_issue['sponsorship_total'] : 0;

TagsNo tags attached.

Activities

rombert

rombert

2010-04-21 03:32

reporter   ~0025177

I'll take a look, thanks for the report.

rombert

rombert

2010-04-21 09:30

reporter   ~0025193

Fixed, thanks for the report.

Hopefully this can make it in 1.2.1.

Related Changesets

MantisBT: master-1.2.x 94619c40

2010-04-21 09:27

rombert


Details Diff
Use the correct default value for sponsorship_total

Fixes 0011819: Mylyn Mantis Task Update Failure
Affected Issues
0011819
mod - api/soap/mc_issue_api.php Diff File

MantisBT: master e4902b65

2010-04-21 09:27

rombert


Details Diff
Use the correct default value for sponsorship_total

Fixes 0011819: Mylyn Mantis Task Update Failure
Affected Issues
0011819
mod - api/soap/mc_issue_api.php Diff File