Clean up includes. Make 'path.php' and 'incl.php' required includes. Switch to using
require_once() for including files in /include so we can have include/*.php files include their own dependencies rather than figuring out that to include A.php we need to include B.php
This commit is contained in:
@@ -3,11 +3,13 @@
|
||||
/* code to view and approve new application data */
|
||||
/********************************************************/
|
||||
|
||||
include("path.php");
|
||||
require("path.php");
|
||||
require(BASE."include/incl.php");
|
||||
require(BASE."include/mail.php");
|
||||
require(BASE."include/tableve.php");
|
||||
require(BASE."include/application.php");
|
||||
require_once(BASE."include/mail.php");
|
||||
require_once(BASE."include/tableve.php");
|
||||
require_once(BASE."include/application.php");
|
||||
require_once(BASE."include/version.php");
|
||||
require_once(BASE."include/user.php");
|
||||
|
||||
$aClean = array(); //array of user input
|
||||
|
||||
|
||||
Reference in New Issue
Block a user