Index: modules/system.module =================================================================== RCS file: /home/cvsroot/drupal-4.5.2/modules/system.module,v retrieving revision 1.1 diff -u -r1.1 system.module --- modules/system.module 3 Feb 2005 01:34:35 -0000 1.1 +++ modules/system.module 4 Feb 2005 04:28:57 -0000 @@ -250,6 +250,12 @@ $group .= form_select(t('First day of week'), 'date_first_day', variable_get('date_first_day', 0), array(0 => t('Sunday'), 1 => t('Monday'), 2 => t('Tuesday'), 3 => t('Wednesday'), 4 => t('Thursday'), 5 => t('Friday'), 6 => t('Saturday')), t('The first day of the week for calendar views.')); $output .= form_group(t('Date settings'), $group); + + //proxy settings + $group = form_textfield(t('Host'), 'proxy_name', variable_get('proxy_name', ''), 40, 255, t('Proxy server.')); + $group .= form_textfield(t('Port'), 'proxy_port', variable_get('proxy_port', ''), 40, 255, t('Port.')); + $output .= form_group(t('Proxy settings'), $group); + return $output; return $output; }