You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.md
+1-19Lines changed: 1 addition & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -296,7 +296,7 @@ NOTE: The User rows use [soft deletes](https://codeigniter.com/user_guide/models
296
296
297
297
### Editing A User
298
298
299
-
The `UserModel::save()` method has been modified to ensure that an email or password previously set on the `User` entity will be automatically updated in the correct `UserIdentity` record.
299
+
The `UserModel::save()`, `update()` and `insert()` methods have been modified to ensure that an email or password previously set on the `User` entity will be automatically updated in the correct `UserIdentity` record.
300
300
301
301
```php
302
302
$users = model('UserModel');
@@ -309,21 +309,3 @@ $user->fill([
309
309
]);
310
310
$users->save($user);
311
311
```
312
-
313
-
If you prefer to use the `update()` method then you will have to update the user's appropriate UserIdentity manually.
0 commit comments