Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $r = $this->jira_api->call('issue', array(
  2. 'project' => array(
  3. 'key' => 'CALL'
  4. ),
  5. 'summary' => $this->auth->name.': '.$_POST['shortwish'],
  6. 'description' => $this->auth->name."\n\n".$_POST['wish'],
  7. 'issuetype' => array(
  8. 'id' => $_POST['type']
  9. ),
  10. 'customfield_10801' => $email,
  11. 'customfield_11000' => $err
  12. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement