Revision aceaf18c
Added by Phil Davis almost 9 years ago
src/usr/local/www/diag_halt.php | ||
---|---|---|
66 | 66 |
// Set DEBUG to true to prevent the system_halt() function from being called |
67 | 67 |
define("DEBUG", false); |
68 | 68 |
|
69 |
require("guiconfig.inc"); |
|
70 |
require("functions.inc"); |
|
71 |
require("captiveportal.inc"); |
|
69 |
require_once("guiconfig.inc");
|
|
70 |
require_once("functions.inc");
|
|
71 |
require_once("captiveportal.inc");
|
|
72 | 72 |
|
73 | 73 |
if ($_POST['save'] == 'No') { |
74 | 74 |
header("Location: index.php"); |
Also available in: Unified diff
Always use require_once
The usage of require() and require_once() throughout the system is
inconsistent, and "bugs" come up now and then when the order of
"requires" is a bit different and some require() happens after the
include file is already included/required.
It seems to me that there is no harm at all in always using
require_once().