<?php
//Copyright (c) Florian Grannemann
//Last change in version: 2.1 Alpha 5
/*
******************************************************************************
ADbNewsSender 2
Copyright (C) 2010 Florian Grannemann (hide@address.com)
Website: http://adbnewssender.sf.net
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 3 of the License, or
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 should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
******************************************************************************
*/
//Do not edit anything unless you realy REALY know what you are doing!
//Step 1. Shows GNU GPL
$language=addslashes($_POST['language']);
$language=preg_replace("/\.\./", "",$language);
include "$path_to_protected/localization/lang/$language/lang-setup.php.inc";
print "<center><h1>ADbNewsSender $version $Step1_WelcomeMSG</h1>";
print "<br>$Step1_MSG1<br>";
print "<p>";
print "<textarea cols=\"80\" rows=\"20\" readonly>";
print "\nADbNewsSender $version\nCopyright © 2010 Florian Grannemann (hide@address.com)\nWebsite: http://adbnewssender.sf.net\n\n\n";
include "license.txt";
print "</textarea>";
print "</p>";
print "<form action=\"index.php\" method=post>";
print "<p><input type=\"hidden\" name=\"language\" value=\"$language\">";
print "<input type=\"hidden\" name=\"step\" value=\"2\">";
print "<input type=submit value=\"$Step1_ACK\"></p></form>";
?>