From 5177fb2b1f84da8a9e45a4fcb45156d13d44b4cb Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Tue, 22 Jan 2002 08:12:45 +0000 Subject: [PATCH 1/1] Paul: It may be just me, but I believe that the "include_once" statements below should be "require_once", actually. Eh? git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2195 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/addrbook_search_html.php | 2 +- src/addressbook.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/addrbook_search_html.php b/src/addrbook_search_html.php index 585680dc..aac99716 100644 --- a/src/addrbook_search_html.php +++ b/src/addrbook_search_html.php @@ -23,7 +23,7 @@ require_once('../functions/smtp.php'); require_once('../functions/display_messages.php'); require_once('../functions/addressbook.php'); require_once('../functions/plugin.php'); -include_once('../functions/strings.php'); +require_once('../functions/strings.php'); /* Insert hidden data */ function addr_insert_hidden() { diff --git a/src/addressbook.php b/src/addressbook.php index f32b85ab..ac99586a 100644 --- a/src/addressbook.php +++ b/src/addressbook.php @@ -15,7 +15,7 @@ require_once('../src/validate.php'); require_once('../functions/array.php'); require_once('../functions/display_messages.php'); require_once('../functions/addressbook.php'); -include_once('../functions/strings.php'); +require_once('../functions/strings.php'); /* Make an input field */ function adressbook_inp_field($label, $field, $name, $size, $values, $add) { -- 2.25.1