Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: user.php 5172 2010-08-02 23:13:03Z RyanGordon $
| * $Id: user.php 5380 2011-02-21 12:04:43Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 382 | Zeile 382 |
---|
else if($birthday['year'] == date("Y")) { // Error if birth date is in future
|
else if($birthday['year'] == date("Y")) { // Error if birth date is in future
|
if($birthday['month'] > date("m") || ($birthday['month'] == date("m") && $bithday['day'] > date("d")))
| if($birthday['month'] > date("m") || ($birthday['month'] == date("m") && $birthday['day'] > date("d")))
|
{ $this->set_error("invalid_birthday"); return false;
| { $this->set_error("invalid_birthday"); return false;
|
Zeile 446 | Zeile 446 |
---|
function verify_profile_fields() { global $db;
|
function verify_profile_fields() { global $db;
|
| if($this->admin_override == true) { return true; }
|
$user = &$this->data; $profile_fields = &$this->data['profile_fields'];
| $user = &$this->data; $profile_fields = &$this->data['profile_fields'];
|