This happens when you cancel the config box in joomla 3.2
In fact, if you look the url, you can see option=com_k instead of option=com_k2 and of course the component com_k does not exist and it occurs an 404 error !
The problem is from :
administrator/components/com_config/controller/component/cancel.php (line 32)
$this->component = $this->input->getWord('component');
The function getWord deletes all digits from the variable ! To correct this issue, replace this line by :
$this->component = $this->input->getVar('component');
I just opened an item on Joomlacode tracker. The url of the item is :
Le 18/11/2013 12:25, Brian Teeman a écrit :
Thank you for reporting this. At this time we are only using github as
the place to submit code fixes, the actual reporting of issues and
testing fixes is still taking place on Joomlacode.Please can you open an item on the Joomlacode tracker
http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&tracker_id=8103
and link it to here.If you are able to create a pull request with your solution then that
would be awesome as well.—
Reply to this email directly or view it on GitHub
#2547 (comment).
Labels |
Added:
?
Removed: ? |
Thank you for reporting this. At this time we are only using github as the place to submit code fixes, the actual reporting of issues and testing fixes is still taking place on Joomlacode.
Please can you open an item on the Joomlacode tracker http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&tracker_id=8103 and link it to here.
If you are able to create a pull request with your solution then that would be awesome as well.