summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-02-04 20:50:28 +0000
committerDries Buytaert <dries@buytaert.net>2011-02-04 20:50:28 +0000
commit874fe3d8db216ac5d490319a553ca47509bfd41b (patch)
tree4b110ffb73716e6567ae9f2850dc1f4ae2f25247
parent07eaa98b294d5141a0d7954693eba9bc6a49a966 (diff)
downloadbrdo-874fe3d8db216ac5d490319a553ca47509bfd41b.tar.gz
brdo-874fe3d8db216ac5d490319a553ca47509bfd41b.tar.bz2
- Patch #1031686 by rschwab: User_load() documentation should reference drupal_save_session(), not session_save_session().
-rw-r--r--modules/user/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index b75790463..80a9eafe8 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -326,7 +326,7 @@ class UserController extends DrupalDefaultEntityController {
* user. So to avoid confusion and to avoid clobbering the global $user object,
* it is a good idea to assign the result of this function to a different local
* variable, generally $account. If you actually do want to act as the user you
- * are loading, it is essential to call @code session_save_session(FALSE);
+ * are loading, it is essential to call @code drupal_save_session(FALSE);
* @endcode first. See @link http://drupal.org/node/218104 Safely impersonating
* another user @endlink for more information.
*