Code Duplication    Length = 2-2 lines in 2 locations

src/Controllers/UsersController.php 2 locations

@@ 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
@@ 671-672 (lines=2) @@
668
            else
669
                $user->force_new_password = 0;
670
671
            if (Input::get('birthday') != null)
672
                $user->birthday = \Carbon\Carbon::createFromFormat('d/m/Y', Input::get('birthday'));
673
674
            $password_changed = false;
675