Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: member.php 4114 2008-08-14 02:11:18Z Tikitiki $
| * $Id: member.php 4154 2008-08-30 06:06:59Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 983 | Zeile 983 |
---|
// Is a fatal call if user has had too many tries $logins = login_attempt_check(); $login_text = '';
|
// Is a fatal call if user has had too many tries $logins = login_attempt_check(); $login_text = '';
|
| // Did we come from the quick login form if($mybb->input['quick_login'] == "1" && $mybb->input['quick_password'] && $mybb->input['quick_username']) { $mybb->input['password'] = $mybb->input['quick_password']; $mybb->input['username'] = $mybb->input['quick_username']; }
|
if(!username_exists($mybb->input['username'])) {
| if(!username_exists($mybb->input['username'])) {
|
Zeile 1334 | Zeile 1341 |
---|
if($membday[2] >= 1970) {
|
if($membday[2] >= 1970) {
|
$w_day = get_weekday($membday[1], $membday[0], $membday[2]);
| $w_day = date("l", mktime(0, 0, 0, $membday[1], $membday[0], $membday[2]));
|
$membday = format_bdays($mybb->settings['dateformat'], $membday[1], $membday[0], $membday[2], $w_day); } else
| $membday = format_bdays($mybb->settings['dateformat'], $membday[1], $membday[0], $membday[2], $w_day); } else
|