- Code cleanup by Bastian Widmer.

git-svn-id: http://www.observium.org/svn/observer/trunk@1957 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Geert Hauwaerts
2011-03-22 20:27:39 +00:00
parent 0c4e6b5dfc
commit 6501cd29b5
45 changed files with 3658 additions and 3656 deletions

View File

@@ -7,38 +7,38 @@ include("includes/functions.php");
if (file_exists('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php'))
{
include('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php');
include('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php');
}
else
{
echo("ERROR: no valid auth_mechanism defined.\n");
exit();
echo("ERROR: no valid auth_mechanism defined.\n");
exit();
}
if (auth_usermanagement())
{
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]))
{
if (!user_exists($argv[1]))
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]))
{
if (adduser($argv[1],$argv[2],$argv[3],@$argv[4]))
{
echo("User ".$argv[1]." added successfully\n");
}
if (!user_exists($argv[1]))
{
if (adduser($argv[1],$argv[2],$argv[3],@$argv[4]))
{
echo("User ".$argv[1]." added successfully\n");
}
}
else
{
echo("User ".$argv[1]." already exists!\n");
}
}
else
{
echo("User ".$argv[1]." already exists!\n");
echo("Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n");
}
}
else
{
echo("Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n");
}
}
else
{
echo("Auth module does not allow adding users!\n");
echo("Auth module does not allow adding users!\n");
}
?>
?>