Removed comments; codestyle
| | |
| | | * @return mixed Header value or null if not available |
| | | */ |
| | | function rc_request_header($name) |
| | | { |
| | | { |
| | | if (function_exists('getallheaders')) |
| | | { |
| | | $hdrs = getallheaders(); |
| | | $hdrs = array_change_key_case($hdrs, CASE_UPPER); |
| | | { |
| | | $hdrs = array_change_key_case(getallheaders(), CASE_UPPER); |
| | | $key = strtoupper($name); |
| | | } |
| | | } |
| | | else |
| | | { |
| | | { |
| | | $key = 'HTTP_' . strtoupper(strtr($name, '-', '_')); |
| | | $hdrs = array_change_key_case($_SERVER, CASE_UPPER); |
| | | } |
| | | if (isset($hdrs[$key])) |
| | | { |
| | | return $hdrs[$key]; |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | return $hdrs[$key]; |
| | | } |
| | | |
| | | |
| | |
| | | font-size: 11px; |
| | | opacity: 0.7; |
| | | -moz-opacity: 0.7; |
| | | filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); |
| | | filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); |
| | | } |
| | | |
| | | a.rcmContactAddress |
| | |
| | | |
| | | #mailboxlist-header |
| | | { |
| | | /* |
| | | position: absolute; |
| | | top: 85px; |
| | | left: 20px; |
| | | width: 140px !important; |
| | | */ |
| | | display: block; |
| | | height: 12px; |
| | | padding: 3px 10px 4px 10px; |