mirror of
https://github.com/macports/macports-www.git
synced 2026-07-12 18:20:27 -07:00
13 lines
404 B
PHP
13 lines
404 B
PHP
<?php
|
|
|
|
# -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4
|
|
# Copyright (c) 2008, The MacPorts Project.
|
|
|
|
require_once 'AcceptAbstract.class.php';
|
|
|
|
class AcceptMime extends AcceptAbstract {
|
|
function __construct() {
|
|
parent::__construct(isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : '*');
|
|
}
|
|
}
|