* Fix bug #38356.
This commit is contained in:
@@ -5,15 +5,15 @@ $config->repo->form = new stdclass();
|
||||
|
||||
$config->repo->form->create = array();
|
||||
$config->repo->form->create['product'] = array('required' => true, 'type' => 'array');
|
||||
$config->repo->form->create['projects'] = array('required' => false, 'type' => 'array', 'default' => array());
|
||||
$config->repo->form->create['projects'] = array('required' => false, 'type' => 'array', 'default' => array());
|
||||
$config->repo->form->create['SCM'] = array('required' => true, 'type' => 'string', 'filter' => 'trim');
|
||||
$config->repo->form->create['serviceHost'] = array('required' => true, 'type' => 'int');
|
||||
$config->repo->form->create['serviceProject'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['serviceHost'] = array('required' => false, 'type' => 'int');
|
||||
$config->repo->form->create['serviceProject'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['name'] = array('required' => true, 'type' => 'string', 'filter' => 'trim');
|
||||
$config->repo->form->create['path'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['path'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['encoding'] = array('required' => true, 'type' => 'string');
|
||||
$config->repo->form->create['client'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['account'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['password'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['encrypt'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['desc'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['client'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['account'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['password'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['encrypt'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
$config->repo->form->create['desc'] = array('required' => false, 'type' => 'string', 'default' => '');
|
||||
|
||||
@@ -45,7 +45,7 @@ function setScenes()
|
||||
productID = $('#product').val();
|
||||
branch = $('#branch').val();
|
||||
if(typeof(branch) == 'undefined') branch = 0;
|
||||
link = createLink('testcase', 'ajaxGetModuleScenes', 'productID=' + productID + '&branch=' + branch + '&moduleID=' + moduleID + '&stype=2&storyID=0&onlyOption=false&status=noclosed&limit=50&type=full&hasParent=1');
|
||||
link = createLink('testcase', 'ajaxGetModuleScenes', 'productID=' + productID + '&branch=' + branch + '&moduleID=' + moduleID + '&stype=1&storyID=0&onlyOption=false&status=noclosed&limit=50&type=full&hasParent=1');
|
||||
|
||||
$('#sceneIdBox').load(link, function()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user