Bug #40811
Task #40095: Move core to namespaces
Rename occurences still pointing to old classes after namespace-renaming
Status: | Closed | Start date: | 2012-09-11 | |
---|---|---|---|---|
Priority: | Should have | Due date: | ||
Assigned To: | - | % Done: | 0% |
|
Category: | - | Spent time: | - | |
Target version: | - | |||
TYPO3 Version: | 6.0 | Is Regression: | No | |
PHP Version: | Sprint Focus: | |||
Complexity: |
Description
Example: @see tslib_fe::includeTCA()
class tslib_fe is now class TypoScriptFrontendController
Oh, and inside itself that class still claims to be part of * @subpackage tslib
There might other similar cases due to namespace-renaming in 6.0.
Related issues
History
#1 Updated by Jigal van Hemert almost 3 years ago
- Status changed from New to Needs Feedback
- Parent task set to #40095
Can you make a patch and push it to gerrit?
#2 Updated by Alexander Opitz about 2 years ago
Hi,
as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.1)?
#3 Updated by Stefan Neufeind about 2 years ago
In master there are some few cases like
typo3/sysext/scheduler/Classes/Scheduler.php:299: * @see tx_scheduler::fetchTask()
typo3/sysext/scheduler/Classes/Scheduler.php:386: * @see tx_scheduler::fetchTask()
typo3/sysext/core/Classes/Database/SoftReferenceIndex.php:251: * @see tslib_content::typolink(), getTypoLinkParts()
typo3/sysext/core/Classes/Database/SoftReferenceIndex.php:287: * @see tslib_content::typolink(), getTypoLinkParts()
typo3/sysext/core/Classes/Database/SoftReferenceIndex.php:566: * @see tslib_content::typolink(), setTypoLinkPartsElement()
In this course we might imho also adjust things like
@see BackendUtility::setUpdateSignal()
to use the FQCN as we do in most other places.
One possible startingpoint for searching might imho be:
ack -R "@see " * | grep "::" | grep -v "@see \\\\"
#4 Updated by Alexander Opitz about 2 years ago
Hi Stefan,
so do you want to make a patch?
#5 Updated by Alexander Opitz over 1 year ago
- Status changed from Needs Feedback to New
- Is Regression set to No
#6 Updated by Wouter Wolters 7 months ago
- Status changed from New to Closed
We spent quite some time already on this with the removing of the class aliasses.. if something pops up that needs a new ticket.