+2010-03-04 Ernesto Baschny <ernst@cron-it.de>
+
+ * Fixed bug #13554: Web>View on mount pages via backend (thanks to Georg Ringer)
+
2010-03-03 Xavier Perseguers <typo3@perseguers.ch>
* Fixed bug #10003: t3lib_db explainOutput does not work with table alias (thanks to Dan Osipov)
t3lib_BEfunc::firstDomainRecord(t3lib_BEfunc::BEgetRootLine($this->id)):
'';
+ // preview of mount pages
+ $sys_page = t3lib_div::makeInstance('t3lib_pageSelect');
+ $sys_page->init();
+ if ($mountPointInfo = $sys_page->getMountPointInfo($this->id)) {
+ $this->id = $mountPointInfo['mount_pid'];
+ $addCmd .= '&MP=' . $mountPointInfo['MPvar'];
+ }
+
$this->url.= ($dName?(t3lib_div::getIndpEnv('TYPO3_SSL') ? 'https://' : 'http://').$dName:$BACK_PATH.'..').'/index.php?id='.$this->id.($this->type?'&type='.$this->type:'').$addCmd;
- //debug($this->url);
}
/**