Paul:
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 22 Jan 2002 08:12:45 +0000 (08:12 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 22 Jan 2002 08:12:45 +0000 (08:12 +0000)
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
src/addressbook.php

index 585680dc018a97fca25e5353d740929272afd36d..aac9971659f0ad51c46b20ebbf4f80ef995ede1c 100644 (file)
@@ -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() {
index f32b85ab03e40e91e1cca5c6055fa8c9185b0ff2..ac99586a20053fdaf8c450cc9818589e8ce25151 100644 (file)
@@ -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) {