1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-15 03:05:26 +02:00
This commit is contained in:
Ryan Cramer
2024-11-01 10:57:53 -04:00
parent b2b810f181
commit 4d6589bdc8
4 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ class Installer {
public function execute() {
if(self::TEST_MODE) {
error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
ini_set('display_errors', 1);
}
@@ -2065,6 +2065,6 @@ class Installer {
/****************************************************************************************************/
if(!Installer::TEST_MODE && is_file("./site/assets/installed.php")) die("This installer has already run. Please delete it.");
error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
$installer = new Installer();
$installer->execute();