Set parent_id of issue?
Added by B Brey almost 14 years ago
I've been toying around with the rest api and came accross the fact that i couldn't set a parent_id for an issue.
I'm using the php interface which uses the following code:
$issue = new Issue(array('parent_id' => $parent_id, 'subject' => xxxx, project_id = '1000')); $issue->save();
Replies (2)
RE: Set parent_id of issue? - Added by B Brey almost 14 years ago
I fixed it myself, it was parent_issue_id.
But i'm now coming accross a new problem with the length of the description, is there a character limit build in?