X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fvalidate.php;h=2ee592b9e76557f0753c88a7bc980119d198b075;hb=ff8a98e7e1d368c57b088522586bddcf68d443a5;hp=83d22e32f58e9f4909cb04f0965b520b4d71d799;hpb=8863d46c4a4dfd55a612f6c4ea8c96192764ba57;p=squirrelmail.git diff --git a/src/validate.php b/src/validate.php index 83d22e32..2ee592b9 100644 --- a/src/validate.php +++ b/src/validate.php @@ -13,8 +13,8 @@ define ('validate_php', true); session_start(); - include ('../functions/i18n.php'); - include ('../functions/auth.php'); + require_once('../functions/i18n.php'); + require_once('../functions/auth.php'); is_logged_in(); @@ -103,13 +103,13 @@ // strings.php, so include them both here. // Include them down here instead of at the top so that all config // variables overwrite any passed in variables (for security) - include ('../functions/strings.php'); - include ('../config/config.php'); - include ('../src/load_prefs.php'); - include ('../functions/page_header.php'); + require_once('../functions/strings.php'); + require_once('../config/config.php'); + require_once('../src/load_prefs.php'); + require_once('../functions/page_header.php'); // Set up the language // i18n.php was included by auth.php global $username, $data_dir; set_up_language(getPref($data_dir, $username, 'language')); -?> +?> \ No newline at end of file