Project

General

Profile

Bug #22608 » 14334.diff

Administrator Admin, 2010-05-08 13:52

View differences:

typo3/sysext/install/mod/class.tx_install.php (Arbeitskopie)
}
// Let DBAL decide whether to load itself
$dbalLoaderFile = $this->backPath . 'sysext/dbal/class.tx_dbal_autoloader.php';
$dbalLoaderFile = $this->backPath . 'sysext/dbal/class.tx_dbal_autoloader.php';
if (@is_file($dbalLoaderFile)) {
include($dbalLoaderFile);
}
......
</p>
');
$headCode='Header legend';
$this->message($headCode, 'Notice!', '
<p>
Indicates that something is important to be aware
of.
<br />
This does <em>not</em> indicate an error.
</p>
', 1);
$this->message($headCode, 'Just information', '
<p>
This is a simple message with some information about
something.
</p>
');
$this->message($headCode, 'Check was successful', '
<p>
Indicates that something was checked and returned an
expected result.
</p>
', -1);
$this->message($headCode, 'Warning!', '
<p>
Indicates that something may very well cause trouble
and you should definitely look into it before
proceeding.
<br />
This indicates a <em>potential</em> error.
</p>
', 2);
$this->message($headCode, 'Error!', '
<p>
Indicates that something is definitely wrong and
that TYPO3 will most likely not perform as expected
if this problem is not solved.
<br />
This indicates an actual error.
</p>
', 3);
$this->output($this->outputWrapper($this->printAll()));
break;
}
(1-1/2)