Project

General

Profile

Bug #21651 » flash-msg-changelog v2.patch

Administrator Admin, 2009-11-23 18:21

View differences:

typo3/mod/web/func/index.php (Arbeitskopie)
$markers['CONTENT'] = $this->content;
} else {
// If no access or if ID == zero
$this->content = $this->doc->section($LANG->getLL('title'), $LANG->getLL('clickAPage_content'), 0, 1);
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('clickAPage_content'),
$LANG->getLL('title'),
t3lib_FlashMessage::INFO
);
$this->content = $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = $this->getButtons();
$markers['CSH'] = $docHeaderButtons['csh'];
typo3/sysext/cms/layout/db_layout.php (Arbeitskopie)
if (top.fsMod) top.fsMod.recentIds["web"] = '.intval($this->id).';
');
$body = $this->doc->section($LANG->getLL('clickAPage_header'), $LANG->getLL('clickAPage_content'), 0, 1);
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('clickAPage_content'),
$LANG->getLL('clickAPage_header'),
t3lib_FlashMessage::INFO
);
$body = $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = array(
typo3/sysext/setup/mod/index.php (Arbeitskopie)
// Notice
$this->content .= $this->doc->spacer(30);
$this->content .= $this->doc->section('', $LANG->getLL('activateChanges'));
$flashMessage = t3lib_div::makeInstance(
't3lib_FlashMessage',
$LANG->getLL('activateChanges'),
'',
t3lib_FlashMessage::INFO
);
$this->content .= $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = $this->getButtons();
(2-2/7)