Minor tweaks.

This commit is contained in:
Jeff Teunissen 2001-06-06 07:40:03 +00:00
parent 2e96c8bf85
commit c8a8e73ea7
3 changed files with 169 additions and 165 deletions

View File

@ -4,9 +4,9 @@
require("parts/preamble.php"); // Load most of document
?>
<!--SEARCHME-->
<P>Website Copyright &copy; 1999,2000 contributors of the QuakeForge Project.
<P>Web site Copyright &copy; 1999-<? echo date("Y"); ?> the QuakeForge Project.
<P>QuakeForge is Copyright &copy; 1999,2000 contributors of the QuakeForge project.<BR>
<P>QuakeForge is Copyright &copy; 1999-<? echo date("Y"); ?> the QuakeForge project.<BR>
Portions Copyright &copy; 1996-1997 id Software, Inc.
<P>Quake&reg; and QuakeWorld&reg; are registered trademarks of id Software, Inc.

View File

@ -2,10 +2,10 @@
$pageName = "Admin - Add User";
$focused = "home"; // Dock icon name to gets a border
$need = 'auth';
require("../parts/preamble.php"); // Load most of document
require "../parts/preamble.php"; // Load most of document
?>
<?
if ($u_username) {
if ($userInfo[u_admin] == 'Y' && $u_username) {
need('sql');
$u_username = AddSlashes ($u_username);
@ -27,20 +27,20 @@
if ($result) {
$numRows = mysql_affected_rows ($conn);
if ($numRows) {
echo '<P>User added to members dbase successfully.';
echo "<P>User &quot;$u_username&quot; added to members database successfully.";
} else {
echo '<P>There was an error in your input. The error was ' . mysql_error ($conn);
}
} else {
echo '<P>There was an error in your input. The error was ' . mysql_error ($conn);
}
$query2 = 'INSERT into devel_plans (p_user, p_date, p_plan) VALUES (' .
"'$u_username', NOW(), 'None')";
$query2 = "INSERT into devel_plans (p_user, p_date, p_plan) VALUES ('$u_username', NOW(), 'None')";
$result2 = mysql_db_query (sqlDB, $query2, $conn);
if ($result2) {
$numRows2 = mysql_affected_rows ($conn);
if ($numRows2) {
echo '<P>User added to plan dbase successfully.';
echo "<P>User &quot;$u_username&quot; added to plan dbase successfully.";
} else {
echo '<P>There was an error in your input. The error was ' . mysql_error ($conn);
}
@ -49,9 +49,10 @@
}
mysql_close ($conn);
} else {
echo 'You suck, butthead.';
echo 'You suck, butthead. (the SQL server could not be contacted)';
}
} else {
if ($userInfo[u_admin] == 'Y') {
?>
<FORM action="adduser.php" method="post">
<?
@ -154,8 +155,11 @@
?>
</FORM>
<?
} else {
echo '<P>You are not authorized to view this page. Now go away or I shall taunt you a second time!';
}
}
?>
<?
require (siteHome ."/parts/postamble.php"); // Finish this sucker up
require siteHome . "/parts/postamble.php"; // Finish this sucker up
?>

View File

@ -14,8 +14,8 @@
<TR>
<TD align="center">
<SPAN class="titleBar">
Copyright &copy; 1999,2000 contributors of the QuakeForge Project.<BR>
<A class="mainTitleBar" href="copyright.php">Additional Copyright and Trademark Acknowledgements</A>
Copyright &copy; 1999-<? echo date("Y"); ?> the QuakeForge Project.<BR>
<A class="mainTitleBar" href="/copyright.php">Additional Copyright and Trademark Acknowledgements</A>
</SPAN>
</TD>
</TR>