| Id |
Date reported |
Status |
Date closed |
|
HttpResponse->getCharacterEncoding() Could return an erroneous value if the 'Content-Type' header of a reponse contains other parameters than 'charset=...'. |
ErrorHandler->alert() Mail feature doesnt work since no 'From' address is supplied to the mail() function. Will correct this in the next version through a new _SENDING_EMAIL_ADDRESS configuration parameter. This address will be used to supply the required 'From' header to the mail() function.
|
PhrameContainer->initContainer() The following code should set the document root if the configuration doesn't contain a _DOCUMENT_ROOT parameter: ...
// Document root available from web server?
} elseif (isset($_SERVER['DOCUMENT_ROOT'])) {
$this->documentRoot = $_SERVER['_DOCUMENT_ROOT'];
} else {
...
This however doesn't work since $_SERVER['_DOCUMENT_ROOT'] should be $_SERVER['DOCUMENT_ROOT'].
|
|
PhrameTagLib Initialising the $_FORM variable to an empty ActionForm class goes wrong if no form configuration was found.
|
|
ActionServer constructor When setting the default PHRAME_CONTEXT value from $_SERVER['REQUEST_URI'] the last character is truncated. Also the string is not URL decoded.
|
|
ViewAction Definition of constructor is superfluous.
|
|
HttpRequest->getSession(), HttpSession The time a session is last accessed is updated incorrectly (should only be updated when setting, getting or removing session attributes).
|
|
ActionServer->validateSession() The time interval after which a session is timed out is calculated incorrectly (i.e. should be the period between the timestamp of the current request and the time the session was last accessed).
|
|
RequestProcessor->processActionPerform() The call to $action->perform() is not backward compatible with Phrame < 3 versions.
|
|
ActionServer constructor Code to set include directories from the _INCLUDE_DIRS configuration parameter is incorrect.
|
|
RequestDispatcher->forward() The value assignment to the $_TOKEN variable is incorrect if no session is attached to the request.
|