mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-13 17:24:54 +02:00
* remove unnecessary parentheses in include/require
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
<?php
|
||||
require_once('../../common.php');
|
||||
require_once '../../common.php';
|
||||
|
||||
require(SYSTEM . 'functions.php');
|
||||
require(BASE . 'install/includes/functions.php');
|
||||
require(BASE . 'install/includes/locale.php');
|
||||
require SYSTEM . 'functions.php';
|
||||
require BASE . 'install/includes/functions.php';
|
||||
require BASE . 'install/includes/locale.php';
|
||||
|
||||
$error = false;
|
||||
require(BASE . 'install/includes/config.php');
|
||||
require BASE . 'install/includes/config.php';
|
||||
|
||||
ini_set('max_execution_time', 300);
|
||||
ob_implicit_flush();
|
||||
ob_end_flush();
|
||||
|
||||
if(!$error) {
|
||||
require(BASE . 'install/includes/database.php');
|
||||
require BASE . 'install/includes/database.php';
|
||||
if(isset($database_error)) { // we failed connect to the database
|
||||
error($database_error);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user