<?php
//Copyright (c) Florian Grannemann
//Last Changed in Version: 2.0 Alpha 2
/*
******************************************************************************
ADbNewsSender 2
Copyright (C) 2009 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/
******************************************************************************
*/
print "<br>$Step3_MSG1<br>";
print "<form action=\"index.php\" method=post>";
print "<table border=0>";
print "<tr><td>".$SettingMap["URL"]."</td><td><input type=text name=\"URL\" size=40 value=\"".$variable_map["URL"]."\"></td></tr>";
print "<tr><td>".$SettingMap["Email"]."</td><td><input type=text name=\"Email\" size=40 value=\"".$variable_map["Email"]."\"></td></tr>";
print "<tr><td></td> <td></td></tr>";
print "<tr><td></td> <td></td></tr>";
print "<tr><td>".$SettingMap["SubscribeURL"]."</td><td><input type=text name=\"SubscribeURL\"size=40 value=\"".$variable_map["SubscribeURL"]."\"></td></tr>";
print "<tr><td>".$SettingMap["RenewalURL"]."</td><td><input type=text name=\"RenewalURL\" size=40 value=\"".$variable_map["RenewalURL"]."\"></td></tr>";
print "<tr><td>".$SettingMap["ConfirmationURL"]."</td><td><input type=text name=\"ConfirmationURL\"size=40 value=\"".$variable_map["ConfirmationURL"]."\"></td></tr>";
print "<tr><td>".$SettingMap["ArchiveURL"]."</td><td><input type=text name=\"ArchiveURL\" size=40 value=\"".$variable_map["ArchiveURL"]."\"></td></tr>";
print "<tr><td>".$SettingMap["EnableTinyMCE"]."</td><td>$Step3_yes <input type=radio name=\"EnableTinyMCE\" value=\"yes\"";
if($variable_map["EnableTinyMCE"]=="yes")
{
print " checked " ;
}
print "> | $Step3_no <input type=radio name=\"EnableTinyMCE\" value=\"no\"";
if($variable_map["EnableTinyMCE"] !="yes")
{
print " checked " ;
}
print "></td></tr>";
print "<tr><td><input type=\"hidden\" name=\"language\" value=\"$language\"><input type=\"hidden\" name=\"oldVersion\" value=\"$oldVersion\">";
print "<input type=\"hidden\" name=\"step\" value=\"3\">";
print "<input type=\"hidden\" name=\"install\" value=\"yes\">";
print "<input type=\"hidden\" name=\"setupoption\" value=\"$setupoption\">";
print "<input type=submit value=\"$Step3_Submit\"></form></td><td></td></tr></table>";
?>