<?php
/* This file is part of the FiForms Framework
Copyright (C) 2003-2008 by Daniel McFeeters,
Licensed under the GNU GPL.
See LICENSE.txt for details.
Sort of a hack to get a default value for the current date on FiReport
parameters screens
*/
header("Content-type: text/xml");
echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>";
echo "<currentdate>";
echo date('Y-m-d');
echo "</currentdate>";
?>