diff options
Diffstat (limited to 'php/admin/include/headers.php.in')
-rw-r--r-- | php/admin/include/headers.php.in | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/php/admin/include/headers.php.in b/php/admin/include/headers.php.in new file mode 100644 index 0000000..1c8a511 --- /dev/null +++ b/php/admin/include/headers.php.in @@ -0,0 +1,36 @@ +<?php +/* + * Copyright (c) 2004 Klaralvdalens Datakonsult AB + * + * Writen by Steffen Hansen <steffen@klaralvdalens-datakonsult.se> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You can view the GNU General Public License, online, at the GNU + * Project's homepage; see <http://www.gnu.org/licenses/gpl.html>. + */ + +header("Content-Type: text/html; charset=UTF-8"); +header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); +header("Cache-Control: no-cache, must-revalidate"); +header("Pragma: no-cache"); + +$topdir = '@webserver_web_prefix@/admin'; +/* + Local variables: + mode: php + indent-tabs-mode: t + tab-width: 4 + buffer-file-coding-system: utf-8 + End: + vim:encoding=utf-8: + */ +?> |