Bug #40811
closedTask #40095: Move core to namespaces
Rename occurences still pointing to old classes after namespace-renaming
0%
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.
Updated by Jigal van Hemert about 12 years ago
- Status changed from New to Needs Feedback
- Parent task set to #40095
Can you make a patch and push it to gerrit?
Updated by Alexander Opitz over 11 years ago
Hi,
as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.1)?
Updated by Stefan Neufeind over 11 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 \\\\"
Updated by Alexander Opitz over 11 years ago
Hi Stefan,
so do you want to make a patch?
Updated by Alexander Opitz about 11 years ago
- Status changed from Needs Feedback to New
- Is Regression set to No
Updated by Wouter Wolters almost 10 years 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.