git-svn-id: http://xe-core.googlecode.com/svn/trunk@187 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-26 01:40:09 +00:00
parent 87eae11bf8
commit 495c7d78a6
2 changed files with 3 additions and 0 deletions

View file

@ -161,6 +161,8 @@
$args->column_type = Context::get('column_type');
$args->column_name = Context::get('column_name');
$args->column_title = Context::get('column_title');
$args->is_active = Context::get('is_active');
if(!in_array(strtoupper($args->is_active), array('Y','N'))) $args->is_active = 'N';
$args->list_order = $oDB->getNextSequence();
$output = $oDB->executeQuery('member.insertJoinForm', $args);

View file

@ -8,6 +8,7 @@
<column name="column_name" var="column_name" />
<column name="column_title" var="column_title" />
<column name="required" var="required" default="N" />
<column name="is_active" var="is_active" default="N" />
<column name="regdate" default="curdate()" />
<column name="list_order" var="list_order" default="1" />
</columns>