?
avatar colivier
colivier
18 Nov 2013

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');

avatar colivier colivier - open - 18 Nov 2013
avatar brianteeman
brianteeman - comment - 18 Nov 2013

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.

avatar colivier
colivier - comment - 18 Nov 2013

I just opened an item on Joomlacode tracker. The url of the item is :

http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=32741&start=0

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).

avatar betweenbrain
betweenbrain - comment - 18 Nov 2013

Looks like the actual pull request is #2548

avatar zero-24 zero-24 - close - 27 Nov 2013
avatar betweenbrain betweenbrain - close - 27 Nov 2013
avatar colivier colivier - close - 27 Nov 2013
avatar betweenbrain
betweenbrain - comment - 27 Nov 2013

Closing this issue as it is a duplicate of #2548

avatar zero-24 zero-24 - change - 7 Jul 2015
Labels Added: ?
Removed: ?

Add a Comment

Login with GitHub to post a comment