Update of /cvsroot/openfirst/projects/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv21812
Modified Files:
editgroups.php
Log Message:
Fix indenting/spacing/style issues, convert include() to include_once() where appropriate, fix incorrect information in heading comment
Index: editgroups.php
===================================================================
RCS file: /cvsroot/openfirst/projects/admin/editgroups.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** editgroups.php 23 Oct 2003 12:43:28 -0000 1.5
--- editgroups.php 23 Oct 2003 13:22:09 -0000 1.6
***************
*** 1,5 ****
<?php
/*
! * openFIRST.projects - groups.php
*
* Copyright (C) 2003,
--- 1,5 ----
<?php
/*
! * openFIRST.projects - admin/editgroups.php
*
* Copyright (C) 2003,
***************
*** 28,34 ****
// Include globals and set header condense (not coded yet)
! include("../../config/globals.php");
$header_condense = true;
! include($header);
--- 28,34 ----
// Include globals and set header condense (not coded yet)
! include_once("../../config/globals.php");
$header_condense = true;
! include_once($header);
***************
*** 44,48 ****
if(! isset($_POST['confirm'])){
echo "<br><br>Your request to remove the group was denied because you have not confirmed! [ <a href='editgroups.php?GroupID=".$_GET['GroupID']."'>Groups</a> ]<br><br>";
! die(include($footer));
}
--- 44,48 ----
if(! isset($_POST['confirm'])){
echo "<br><br>Your request to remove the group was denied because you have not confirmed! [ <a href='editgroups.php?GroupID=".$_GET['GroupID']."'>Groups</a> ]<br><br>";
! die(include_once($footer));
}
***************
*** 54,58 ****
echo "<br><br>Group removed! [ <a href='../groups.php'>Groups</a> ]<br><br>";
! die(include($footer));
}
--- 54,58 ----
echo "<br><br>Group removed! [ <a href='../groups.php'>Groups</a> ]<br><br>";
! die(include_once($footer));
}
***************
*** 116,119 ****
<p> </p>
<?php
! } include($footer);
?>
--- 116,119 ----
<p> </p>
<?php
! } include_once($footer);
?>
|