Vergleich admin/users.php - 1.01 - 1.18

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 222Zeile 222
		"yahoo" => addslashes($mybb->input['yahoo']),
"msn" => addslashes($mybb->input['msn']),
"birthday" => addslashes($mybb->input['birthday']),

		"yahoo" => addslashes($mybb->input['yahoo']),
"msn" => addslashes($mybb->input['msn']),
"birthday" => addslashes($mybb->input['birthday']),

		"allownotices" => $mybb->input['allownotices'],
"hideemail" => $mybb->input['hideemail'],
"emailnotify" => $mybb->input['emailnotify'],
"invisible" => $mybb->input['invisible'],
"style" => $mybb->input['style'],

		"allownotices" => addslashes($mybb->input['allownotices']),
"hideemail" => addslashes($mybb->input['hideemail']),
"emailnotify" => addslashes($mybb->input['emailnotify']),
"invisible" => addslashes($mybb->input['invisible']),
"style" => addslashes($mybb->input['style']),

		"timezone" => addslashes($mybb->input['timezoneoffset']),

		"timezone" => addslashes($mybb->input['timezoneoffset']),

		"receivepms" => $mybb->input['receivepms'],
"pmpopup" => $mybb->input['pmpopup'],
"pmnotify" => $mybb->input['pmnotify'],

		"receivepms" => addslashes($mybb->input['receivepms']),
"pmpopup" =>addslashes( $mybb->input['pmpopup']),
"pmnotify" => addslashes($mybb->input['pmnotify']),

		"signature" => addslashes($mybb->input['signature'])
);
$db->insert_query(TABLE_PREFIX."users", $user);

		"signature" => addslashes($mybb->input['signature'])
);
$db->insert_query(TABLE_PREFIX."users", $user);

Zeile 394Zeile 394
		"yahoo" => addslashes($mybb->input['yahoo']),
"msn" => addslashes($mybb->input['msn']),
"birthday" => addslashes($mybb->input['birthday']),

		"yahoo" => addslashes($mybb->input['yahoo']),
"msn" => addslashes($mybb->input['msn']),
"birthday" => addslashes($mybb->input['birthday']),

		"allownotices" => $mybb->input['allownotices'],
"hideemail" => $mybb->input['hideemail'],
"emailnotify" => $mybb->input['emailnotify'],
"invisible" => $mybb->input['invisible'],
"style" => $mybb->input['stylesel'],

		"allownotices" => addslashes($mybb->input['allownotices']),
"hideemail" => addslashes($mybb->input['hideemail']),
"emailnotify" => addslashes($mybb->input['emailnotify']),
"invisible" => addslashes($mybb->input['invisible']),
"style" => addslashes($mybb->input['style']),

		"timezone" => addslashes($mybb->input['timezoneoffset']),

		"timezone" => addslashes($mybb->input['timezoneoffset']),

		"receivepms" => $mybb->input['receivepms'],
"pmpopup" => $mybb->input['pmpopup'],
"pmnotify" => $mybb->input['pmnotify'],

		"receivepms" => addslashes($mybb->input['receivepms']),
"pmpopup" =>addslashes( $mybb->input['pmpopup']),
"pmnotify" => addslashes($mybb->input['pmnotify']),

		"signature" => addslashes($mybb->input['signature']),
"postnum" => intval($mybb->input['postnum']),
);

		"signature" => addslashes($mybb->input['signature']),
"postnum" => intval($mybb->input['postnum']),
);

Zeile 503Zeile 503
	}

$searchop = $mybb->input['searchop'];

	}

$searchop = $mybb->input['searchop'];

 
	$searchop['page'] = intval($searchop['page']);
$searchop['perpage'] = intval($searchop['perpage']);

	if(!$searchop['perpage'])
{
$searchop['perpage'] = "500";

	if(!$searchop['perpage'])
{
$searchop['perpage'] = "500";

Zeile 1422Zeile 1424
	{
$searchop['sortby'] = "username";
}

	{
$searchop['sortby'] = "username";
}

 
	$searchop['page'] = intval($searchop['page']);
$searchop['perpage'] = intval($searchop['perpage']);

	if(!$searchop['perpage'])
{
$searchop['perpage'] = "30";

	if(!$searchop['perpage'])
{
$searchop['perpage'] = "30";

Zeile 1739Zeile 1743
		$banneduser = array(
"admin" => $mybbadmin['uid'],
"dateline" => time(),

		$banneduser = array(
"admin" => $mybbadmin['uid'],
"dateline" => time(),

			"gid" => $mybb->input['gid'],
"bantime" => $mybb->input['liftafter'],

			"gid" => intval($mybb->input['gid']),
"bantime" => addslashes($mybb->input['liftafter']),

			"lifted" => $liftdate,
"reason" => addslashes($mybb->input['banreason'])
);

			"lifted" => $liftdate,
"reason" => addslashes($mybb->input['banreason'])
);

Zeile 1753Zeile 1757
		$banneduser = array(
"uid" => $user['uid'],
"admin" => $mybbadmin['uid'],

		$banneduser = array(
"uid" => $user['uid'],
"admin" => $mybbadmin['uid'],

			"gid" => $mybb->input['gid'],

			"gid" => intval($mybb->input['gid']),

			"oldgroup" => $user['usergroup'],
"dateline" => time(),

			"oldgroup" => $user['usergroup'],
"dateline" => time(),

			"bantime" => $mybb->input['liftafter'],

			"bantime" => addslashes($mybb->input['liftafter']),

			"lifted" => $liftdate,
"reason" => addslashes($mybb->input['banreason'])
);

			"lifted" => $liftdate,
"reason" => addslashes($mybb->input['banreason'])
);