Bug #15879
closedEM: Suggested extensions are not handled correctly
0%
Description
During the install of an extension which suggests other extensions the user is asked if these extensions should be downloaded as well. Usually he can either follow the suggestion or ignore it.
There are two issues I experienced:
a) The extension keys of the extensions being suggested are not displayed correctly
b) Even if I check the "ignore" check box, I can't proceed
- Import templavoila 0.6.1 from a local .t3x file (attached to this report)
- doc_tut_ftb1 and rlmp_tvnotes shouldn't be installed
The suggestions don't suggest a specific version of extensions, might be related to that.
(issue imported from #M2957)
Files
Updated by Karsten Dambekalns over 18 years ago
This is what is in the ext_emconf.php file of that extension:
'constraints' => array(
'depends' => array(
'php' => '4.3.0-',
'typo3' => '3.9.9-',
'static_info_tables' => '',
'cms' => '',
'lang' => '',
),
'conflicts' => array(
'kb_tv_clipboard' => '-0.1.0',
'templavoila_cw' => '-0.1.0',
'eu_tradvoila' => '-0.1.0',
),
'suggests' => array(
'0' => 'doc_tut_ftb1',
'1' => 'rlmp_tvnotes',
),
),
Now, if the array is wrongly formatted, how should this work? Suggestions are expected to be given like the other constraints...
Updated by Karsten Dambekalns over 18 years ago
If the suggestion is given correctly ignoring works, too...
'suggests' => array(
'doc_tut_ftb1' => '',
'rlmp_tvnotes' => '',
),