User tests: Successful: Unsuccessful:
Pull Request for Issue # .
The only two modules "mod_articles_latest" and "mod_articles_news" which have been refactored to the new services structure have a doc block tag @package Joomla.Administrator
in their "provider.php" files.
This is possibly a remainder from copying from previously refactored administrator modules.
It should be @package Joomla.Site
like for all other PHP files of site modules.
This pull request (PR) fixes that.
Check the @package
doc block tag of all PHP files below the "modules" folder, i.e. of all site modules.
On Windows you can use following commands in a Windows Command Shell (CMD):
cd modules
findstr /s /i /c:"@package" *.php
On Linux and similar you can use following commands in a command shell (e.g. bash):
find ./modules -type f -name "*\.php" -exec grep -iH "@package" {} \;
All PHP files of site modules have @package Joomla.Site
except of the two files modified by this PR, those have @package Joomla.Administrator
All PHP files of site modules have @package Joomla.Site
.
None.
Status | New | ⇒ | Pending |
Category | ⇒ | Modules Front End |
I have tested this item
Status | Pending | ⇒ | Ready to Commit |
RTC
Labels |
Added:
?
?
|
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2022-09-12 07:17:21 |
Closed_By | ⇒ | laoneo |
Thanks!
I have tested this item✅ successfully on 622b352
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/38738.