+2005-04-04 Michael Stucki <michael@typo3.org>
+
+ * Unfortunately the resolve-path patch was overwritten, so here it is again
+
2005-04-04 Robert Lemke <robert@typo3.org>
- + Added a preliminary way for moving containers in a flexform section in TCEforms + TCEmain. Before you could only delete containers.
- + Added Sebastian Kurfürst's collapsable modules feature for the backend's module bar
+
+ * Added a preliminary way for moving containers in a flexform section in TCEforms + TCEmain. Before you could only delete containers.
+ * Added Sebastian Kurfürst's collapsable modules feature for the backend's module bar
2005-04-04 Kasper Skårhøj,,, <kasper@typo3.com>
* TYPO3 seems to prefer "mediumblob" instead of "MEDIUMBLOB", thus I changed that in typo3/sysext/cms/ext_tables.sql
* Added hook in tslib_fe
-
+
2005-03-28 Michael Stucki <michael@typo3.org>
* Corrected a typo in fe_adminLib.inc (Ingmar watch this!)
$link_sub = 0;
}
+ $link = t3lib_div::resolveBackPath($link);
+
$moduleKey = $moduleName.'_tab';
$moduleCSSId = 'ID_'.t3lib_div::md5int($moduleName);
</tr>';
}
- $link = $subInfo['script'];
+ $link = t3lib_div::resolveBackPath($subInfo['script']);
$prefix=$this->getNavFramePrefix ($moduleInfo, $subInfo);
$subKey = $moduleName.'_'.$subName.'_tab';
if (!$BE_USER->uc['condensedMode'] && $moduleInfo['navFrameScript']) {
// use special nav script from sub module, otherwise from the main module
- $subNavFrameScript = $subInfo['navFrameScript'] ? $subInfo['navFrameScript'] : $moduleInfo['navFrameScript'] ;
+ $subNavFrameScript = $subInfo['navFrameScript'] ? $subInfo['navFrameScript'] : $moduleInfo['navFrameScript'];
+ $subNavFrameScript = t3lib_div::resolveBackPath($subNavFrameScript);
// add GET params for sub module to the nav script
$subNavFrameScript = $this->wrapLinkWithAB($subNavFrameScript).$subInfo['navFrameScriptParam'];
$prefix = '';
$navFrameScriptParam = $subModuleInfo['navFrameScriptParam'] ? $subModuleInfo['navFrameScriptParam'] : $moduleInfo['navFrameScriptParam'];
if ($moduleInfo['navFrameScript']) {
+ $navFrameScript = t3lib_div::resolveBackPath($moduleInfo['navFrameScript']);
+ $navFrameScript = $this->wrapLinkWithAB($navFrameScript);
+
if ($BE_USER->uc['condensedMode']) {
- $prefix=$this->wrapLinkWithAB($moduleInfo['navFrameScript']).$navFrameScriptParam.'¤tSubScript=';
+ $prefix=$navFrameScript.$navFrameScriptParam.'¤tSubScript=';
} else {
$prefix='alt_mod_frameset.php?'.
'fW="+top.TS.navFrameWidth+"'.
- '&nav="+top.TS.PATH_typo3+"'.rawurlencode($this->wrapLinkWithAB($moduleInfo['navFrameScript']).$navFrameScriptParam).
+ '&nav="+top.TS.PATH_typo3+"'.rawurlencode($navFrameScript.$navFrameScriptParam).
'&script=';
}
}