Actions
Task #49991
closedrequire-statements should use absolute paths
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Code Cleanup
Target version:
-
Start date:
2013-07-12
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
require-statements should use absolute paths and not rely on the current working-directory and/or a certain include-path-setting.
Things likerequire 'conf.php';
pointing to a file in the current directory can simply becomerequire __DIR__ . '/conf.php';
Updated by Gerrit Code Review over 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22270
Updated by Gerrit Code Review over 11 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22270
Updated by Stefan Neufeind over 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset ad59f964ab7ad94f25356b2a2c425f988b0d4ae8.
Actions