From: bradymiller Date: Thu, 14 Feb 2013 22:20:19 +0000 (-0800) Subject: require the include of the security related scripts in globals.php X-Git-Tag: whats-been-changed~406 X-Git-Url: https://repo.or.cz/w/openemr.git/commitdiff_plain/40baf1aed59a507192f48064c5848e238f59bca0 require the include of the security related scripts in globals.php --- diff --git a/interface/globals.php b/interface/globals.php index 7f02798c4..12a0ff719 100644 --- a/interface/globals.php +++ b/interface/globals.php @@ -153,10 +153,10 @@ $GLOBALS['edi_271_file_path'] = $GLOBALS['OE_SITE_DIR'] . "/edi/"; include_once (dirname(__FILE__) . "/../library/translation.inc.php"); // Include convenience functions with shorter names than "htmlspecialchars" -include_once (dirname(__FILE__) . "/../library/htmlspecialchars.inc.php"); +require_once (dirname(__FILE__) . "/../library/htmlspecialchars.inc.php"); // Include sanitization/checking function (for security) -include_once (dirname(__FILE__) . "/../library/sanitize.inc.php"); +require_once (dirname(__FILE__) . "/../library/sanitize.inc.php"); // Includes functions for date internationalization include_once (dirname(__FILE__) . "/../library/date_functions.php");