Skip to content

Commit

Permalink
Fix #10829: Remove custom field 'advanced' flag from SOAP API
Browse files Browse the repository at this point in the history
This is a follow up to 779150c that
removes the "advanced" field from the custom field API. This field is no
longer used and therefore can be removed from the SOAP API as well.
  • Loading branch information
davidhicks committed Aug 31, 2009
1 parent 779150c commit 3de1678
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/soap/mantisconnect.php
Expand Up @@ -455,7 +455,6 @@
'access_level_rw' => array( 'name' => 'access_level_rw', 'type' => 'xsd:integer', 'minOccurs' => '0'),
'length_min' => array( 'name' => 'length_min', 'type' => 'xsd:integer', 'minOccurs' => '0'),
'length_max' => array( 'name' => 'length_max', 'type' => 'xsd:integer', 'minOccurs' => '0'),
'advanced' => array( 'name' => 'advanced', 'type' => 'xsd:boolean', 'minOccurs' => '0'),
'display_report' => array( 'name' => 'display_report', 'type' => 'xsd:boolean', 'minOccurs' => '0'),
'display_update' => array( 'name' => 'display_update', 'type' => 'xsd:boolean', 'minOccurs' => '0'),
'display_resolved' => array( 'name' => 'display_resolved','type' => 'xsd:boolean', 'minOccurs' => '0'),
Expand Down
1 change: 0 additions & 1 deletion api/soap/mc_project_api.php
Expand Up @@ -477,7 +477,6 @@ function mc_project_get_custom_fields( $p_username, $p_password, $p_project_id )
'access_level_rw' => $t_def['access_level_rw'],
'length_min' => $t_def['length_min'],
'length_max' => $t_def['length_max'],
'advanced' => $t_def['advanced'],
'display_report' => $t_def['display_report'],
'display_update' => $t_def['display_update'],
'display_resolved' => $t_def['display_resolved'],
Expand Down

0 comments on commit 3de1678

Please sign in to comment.