Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f56af88
)
MDL-22031 fixed installer regression, adding more defines that are later done in...
author
Petr Skoda
<skodak@moodle.org>
Tue, 6 Apr 2010 19:08:15 +0000
(19:08 +0000)
committer
Petr Skoda
<skodak@moodle.org>
Tue, 6 Apr 2010 19:08:15 +0000
(19:08 +0000)
install.php
patch
|
blob
|
blame
|
history
diff --git
a/install.php
b/install.php
index
6082abf
..
ee6bc59
100644
(file)
--- a/
install.php
+++ b/
install.php
@@
-43,6
+43,9
@@
if (file_exists($configfile)) {
die;
}
+define('CLI_SCRIPT', false); // prevents some warnings later
+define('AJAX_SCRIPT', false); // prevents some warnings later
+
// make sure PHP errors are displayed - helps with diagnosing of problems
@error_reporting(E_ALL);
@ini_set('display_errors', '1');