Index: typo3/mod/tools/em/class.em_index.php
===================================================================
--- typo3/mod/tools/em/class.em_index.php (revision 3451)
+++ typo3/mod/tools/em/class.em_index.php (working copy)
@@ -4267,6 +4267,13 @@
continue;
}
if (t3lib_extMgm::isLoaded($conflictK)) {
+ $versionRange = $this->splitVersionRange($conflictV);
+ if ($versionRange[0] != '0.0.0' && version_compare($instExtInfo[$conflictK]['EM_CONF']['version'],$versionRange[0],'<')) {
+ continue;
+ }
+ elseif ($versionRange[1] != '0.0.0' && version_compare($instExtInfo[$conflictK]['EM_CONF']['version'],$versionRange[1],'>')) {
+ continue;
+ }
$msg[] = 'The extensions "'.$extKey.'" and "'.$conflictK.'" ('.$instExtInfo[$conflictK]['EM_CONF']['title'].') will conflict with each other. Please remove "'.$conflictK.'" if you want to install "'.$extKey.'".';
$msg[] = ' '.$this->removeButton().' Remove now (opens a new window)';
$msg[] = ' ';