/etc/htcheck/footer.inc.php is in htcheck-php 1:2.0.0~rc1-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <?php
// include/footer.inc.php
// Footer section of every page
//
// Part of the ht://Check package
//
// Copyright (c) 1999-2004 Comune di Prato - Prato - Italy
// Author: Gabriele Bartolini - Prato - Italy <angusgb@users.sourceforge.net>
//
// For copyright details, see the file COPYING in your distribution
// or the GNU General Public License version 2 or later
// <http://www.gnu.org/copyleft/gpl.html>
//
// $Id: footer.inc.php,v 1.5 2003/12/30 09:39:23 angusgb Exp $
if ( defined( '__FOOTER_INC' ) ) return;
define( '__FOOTER_INC', 1 );
?>
<br style="clear: both">
</div>
<div id="footer">
<div class="toolbar">
<?php
if (!empty($linkbar))
echo $linkbar;
?>
</div>
<div class="img">
<img src="img/htcheck.png" width="158" height="50" alt="ht://Check logo">
</div>
<br style="clear: both">
</div>
</body>
</html>
|