Project

General

Profile

« Previous | Next » 

Revision c81ef6e2

Added by Phil Davis about 9 years ago

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().

View differences:

src/usr/local/www/diag_defaults.php
63 63
##|*MATCH=diag_defaults.php*
64 64
##|-PRIV
65 65

  
66
require("guiconfig.inc");
66
require_once("guiconfig.inc");
67 67

  
68 68
if ($_POST['Submit'] == " " . gettext("No") . " ") {
69 69
	header("Location: index.php");

Also available in: Unified diff