diff options
author | Richard Bos <richard@radoeka.nl> | 2005-12-30 11:07:18 (GMT) |
---|---|---|
committer | Richard Bos <richard@radoeka.nl> | 2005-12-30 11:07:18 (GMT) |
commit | 02aacc02e5e0058fcbc94b57800fd88a66708b6c (patch) | |
tree | 38ef5fb9085c9b3f2f92206d48f920a5a68735de /php/admin/include/headers.php.in | |
parent | 6472683b520ca2b879e443d98c7b919a291ff41a (diff) | |
download | kolab-webadmin-02aacc02e5e0058fcbc94b57800fd88a66708b6c.tar.gz |
Added suffix ".in" to the files:
php/admin/include/auth.class.php
php/admin/include/headers.php
php/admin/templates/page.tpl
www/admin/logout.php
www/admin/user/user.php
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: + */ +?> |