Only partially when I did the cache on the index.php. For some reason I
decided to roll it back and put it in as a separate issue. This should
be relatively low risk, though.
-Akara
Shanti Subramanyam wrote:
Hi Akara,
As this fix been tested ? I believe what we're currently running on my
rig doesn't have these fixes ?
Shanti
Akara Sucharitakul (JIRA) wrote:
[
https://issues.apache.org/jira/browse/OLIO-21?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Akara Sucharitakul resolved OLIO-21.
------------------------------------
Resolution: Fixed
All instances of $HTTP_SESSION_VARS have been changed to $_SESSION.
$HTTP_SESSION_VARS is deprecated according to PHP documentation -
needs convertion to $_SESSION
-----------------------------------------------------------------------------------------------
Key: OLIO-21
URL: https://issues.apache.org/jira/browse/OLIO-21
Project: Olio
Issue Type: Bug
Components: php-app
Environment: All
Reporter: Akara Sucharitakul
Assignee: Akara Sucharitakul
$HTTP_SESSION_VARS was deprecated since PHP 4.1. It is not an auto
global and access to it from several scripts is becoming fragile as
we cannot access them in functions and objects. This is an easy but
widespread change.