Skip to content

Commit

Permalink
Changed include to require_once
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@841 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Jan 25, 2004
1 parent 2f14418 commit f831b0f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion admin/admin.php
Expand Up @@ -33,7 +33,7 @@
# Suite 330, Boston, MA 02111-1307, USA. #
#############################################################
*/
include("config.php");
require_once("config.php");

if (!isset($sid)) {$sid=returnglobal('sid');}
if (!isset($gid)) {$gid=returnglobal('gid');}
Expand Down
2 changes: 1 addition & 1 deletion admin/browse.php
Expand Up @@ -33,7 +33,7 @@
# Suite 330, Boston, MA 02111-1307, USA. #
#############################################################
*/
include("config.php");
require_once("config.php");

if (!isset($limit)) {$limit=returnglobal('limit');}
if (!isset($sid)) {$sid=returnglobal('sid');}
Expand Down
2 changes: 1 addition & 1 deletion admin/checkfields.php
@@ -1,6 +1,6 @@
<?php
//THE TABLE STRUCTURE, TABLE BY TABLE AND FIELD BY FIELD
include("config.php");
require_once("config.php");

sendcacheheaders();

Expand Down
2 changes: 1 addition & 1 deletion admin/createdb.php
Expand Up @@ -35,7 +35,7 @@
*/
$dbname = $_GET['dbname'];

include("config.php");
require_once("config.php");

sendcacheheaders();

Expand Down
2 changes: 1 addition & 1 deletion admin/dbchecker.php
Expand Up @@ -34,7 +34,7 @@
#############################################################
*/

include("config.php");
require_once("config.php");

// THIS FILE CHECKS THE CONSISTENCY OF THE DATABASE, IT LOOKS FOR
// STRAY QUESTIONS, ANSWERS, CONDITIONS OR GROUPS AND DELETES THEM
Expand Down
2 changes: 1 addition & 1 deletion admin/dumpgroup.php
Expand Up @@ -42,7 +42,7 @@

$gid = $_GET['gid'];

include ("config.php");
require_once("config.php");

//echo $htmlheader;
if (!$gid)
Expand Down
2 changes: 1 addition & 1 deletion admin/dumplabel.php
Expand Up @@ -42,7 +42,7 @@

$lid=$_GET['lid'];

include ("config.php");
require_once("config.php");

//echo $htmlheader;
if (!$lid)
Expand Down
2 changes: 1 addition & 1 deletion admin/dumpsurvey.php
Expand Up @@ -42,7 +42,7 @@
// 3. questions
// 4. answers

include ("config.php");
require_once("config.php");

if (!isset($sid)) {$sid=returnglobal('sid');}

Expand Down
2 changes: 1 addition & 1 deletion admin/export.php
Expand Up @@ -34,7 +34,7 @@
#############################################################
*/

include("config.php");
require_once("config.php");

if (!isset($sid)) {$sid=returnglobal('sid');}
if (!isset($style)) {$style=returnglobal('style');}
Expand Down
2 changes: 1 addition & 1 deletion admin/labels.php
Expand Up @@ -34,7 +34,7 @@
#############################################################
*/

include("config.php");
require_once("config.php");

if (!isset($action)) {$action=returnglobal('action');}
if (!isset($lid)) {$lid=returnglobal('lid');}
Expand Down
2 changes: 1 addition & 1 deletion admin/listcolumn.php
Expand Up @@ -33,7 +33,7 @@
# Suite 330, Boston, MA 02111-1307, USA. #
#############################################################
*/
include("config.php");
require_once("config.php");

sendcacheheaders();

Expand Down
2 changes: 1 addition & 1 deletion admin/printablesurvey.php
Expand Up @@ -37,7 +37,7 @@
$sid = $_GET['sid'];

$boxstyle = "style='border-color: #111111; border-width: 1; border-style: solid'";
include("config.php");
require_once("config.php");

sendcacheheaders();

Expand Down
2 changes: 1 addition & 1 deletion admin/resultsdump.php
Expand Up @@ -36,7 +36,7 @@

$sid = $_GET['sid'];

include("config.php");
require_once("config.php");

if (!$sid)
{
Expand Down
2 changes: 1 addition & 1 deletion admin/statistics.php
Expand Up @@ -34,7 +34,7 @@
#############################################################
*/

include("config.php");
require_once("config.php");

if (!isset($sid)) {$sid=returnglobal('sid');}
sendcacheheaders();
Expand Down

0 comments on commit f831b0f

Please sign in to comment.