Update spelling of htmlpurifier to be correct spelling
[civicrm-core.git] / CRM / Core / Session.php
index c9d10d2b3a9f1821849269647a6af78162144e78..762795a1185f0103ae4d871984849021be9a8763 100644 (file)
@@ -32,8 +32,9 @@ class CRM_Core_Session {
 
   /**
    * Cache of all the session names that we manage.
+   * @var array
    */
-  static $_managedNames = NULL;
+  public static $_managedNames = NULL;
 
   /**
    * Key is used to allow the application to have multiple top
@@ -69,9 +70,6 @@ class CRM_Core_Session {
    *
    * The CMS takes care of initiating the php session handler session_start().
    *
-   * When using CiviCRM standalone (w/o a CMS), we start the session
-   * in index.php and then pass it off to here.
-   *
    * All crm code should always use the session using
    * CRM_Core_Session. we prefix stuff to avoid collisions with the CMS and also
    * collisions with other crm modules!
@@ -538,7 +536,7 @@ class CRM_Core_Session {
   /**
    * Retrieve contact id of the logged in user.
    *
-   * @return int|NULL
+   * @return int|null
    *   contact ID of logged in user
    */
   public static function getLoggedInContactID() {