Project

General

Profile

Actions

Bug #15879

closed

EM: Suggested extensions are not handled correctly

Added by Robert Lemke almost 18 years ago. Updated over 17 years ago.

Status:
Closed
Priority:
Should have
Category:
Extension Manager
Target version:
-
Start date:
2006-03-22
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.0
PHP Version:
5
Tags:
Complexity:
Is Regression:
Sprint Focus:

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

Actions #1

Updated by Karsten Dambekalns almost 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...

Actions #2

Updated by Karsten Dambekalns almost 18 years ago

If the suggestion is given correctly ignoring works, too...

'suggests' => array(
'doc_tut_ftb1' => '',
'rlmp_tvnotes' => '',
),
Actions

Also available in: Atom PDF