diff options
author | ivan <ivan> | 2006-10-16 17:10:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-10-16 17:10:46 +0000 |
commit | 7c0ec6fb521584a93a93e456dbb923870f059308 (patch) | |
tree | fb49770735a952a790c1a0f6822517edcc0644dc /httemplate | |
parent | 2baa6eb779a7f344903a7bbec7a5efa57239b40b (diff) |
add a conf checkbox to turn DOB on
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 22 | ||||
-rw-r--r-- | httemplate/view/cust_main/misc.html | 12 |
2 files changed, 21 insertions, 13 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index 23254b6a8..6f4c98ea5 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -164,16 +164,20 @@ <!-- birthdate --> -<BR> -<% ntable("#cccccc", 2) %> -<% include ('/elements/tr-input-date-field.html', - 'birthdate', - $cust_main->birthdate, - 'Date of Birth', - $conf->config('date_format') || "%m/%d/%Y") -%> +<% if ( $conf->exists('cust_main-enable_birthdate') ) { -</TABLE> + <BR> + <% ntable("#cccccc", 2) %> + <% include ('/elements/tr-input-date-field.html', + 'birthdate', + $cust_main->birthdate, + 'Date of Birth', + $conf->config('date_format') || "%m/%d/%Y") + %> + + </TABLE> + +<% } %> <!-- contact info --> diff --git a/httemplate/view/cust_main/misc.html b/httemplate/view/cust_main/misc.html index b0fab0300..b6c028e16 100644 --- a/httemplate/view/cust_main/misc.html +++ b/httemplate/view/cust_main/misc.html @@ -91,10 +91,14 @@ <TD BGCOLOR="#ffffff"><% $cust_main->otaker %></TD> </TR> -<TR> - <TD ALIGN="right">Date of Birth</TD> - <TD BGCOLOR="#ffffff"><% $cust_main->birthdate ? time2str($date_format, $cust_main->birthdate) : '' %></TD> -</TR> +<% if ( $conf->exists('cust_main-enable_birthdate') ) { + + <TR> + <TD ALIGN="right">Date of Birth</TD> + <TD BGCOLOR="#ffffff"><% $cust_main->birthdate ? time2str($date_format, $cust_main->birthdate) : '' %></TD> + </TR> + +<% } %> </TABLE></TD></TR></TABLE> |