|
@@ 133-134 (lines=2) @@
|
| 130 |
|
$user->gender = Input::get('gender');
|
| 131 |
|
$user->description = Input::get('description');
|
| 132 |
|
|
| 133 |
|
if (Input::get('birthday') != null)
|
| 134 |
|
$user->birthday = \Carbon\Carbon::createFromFormat('d/m/Y', Input::get('birthday'));
|
| 135 |
|
|
| 136 |
|
$passwordChanged = false;
|
| 137 |
|
|
|
@@ 655-656 (lines=2) @@
|
| 652 |
|
else
|
| 653 |
|
$user->force_new_password = 0;
|
| 654 |
|
|
| 655 |
|
if (Input::get('birthday') != null)
|
| 656 |
|
$user->birthday = \Carbon\Carbon::createFromFormat('d/m/Y', Input::get('birthday'));
|
| 657 |
|
|
| 658 |
|
$password_changed = false;
|
| 659 |
|
|