* fix for check zentao errors.

This commit is contained in:
wangyidong
2012-12-24 09:12:25 +00:00
parent 88bf2ed394
commit abbcc2a5ca
4 changed files with 13 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ $whiteList[] = 'project-sendmail';
$whiteList[] = 'release-commonaction';
$whiteList[] = 'task-commonaction';
$whiteList[] = 'task-sendmail';
$whiteList[] = 'testtask-sendmail';
$whiteList[] = 'user-login';
$whiteList[] = 'user-deny';
$whiteList[] = 'user-logout';

View File

@@ -640,6 +640,15 @@ CREATE TABLE IF NOT EXISTS `zt_user` (
UNIQUE KEY `account` (`account`),
KEY `company` (`company`,`dept`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS `zt_userContact`;
CREATE TABLE IF NOT EXISTS `zt_userContact` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`company` mediumint(8) unsigned NOT NULL,
`account` char(30) NOT NULL,
`listName` varchar(60) NOT NULL,
`userList` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS `zt_userGroup`;
CREATE TABLE IF NOT EXISTS `zt_userGroup` (
`company` mediumint(8) unsigned NOT NULL,

View File

@@ -15,6 +15,7 @@
* $config->svn->repos['pms']['password'] = 'pass';
*
*/
$config->svn = new stdClass();
$config->svn->encodings = 'utf-8, gbk';
$config->svn->client = '';

View File

@@ -1,5 +1,7 @@
<?php
$config->webapp = new stdClass();
$config->webapp->url = 'http://www.zentao.com';
$config->webapp->apiRoot = $config->webapp->url . '/webapp-';
$config->webapp->create = new stdClass();
$config->webapp->create->requiredFields = 'name,url,target';