Update of /cvsroot/xoops/xoops-current/html/modules/system/admin/groups
In directory usw-pr-cvs1:/tmp/cvs-serv9227
Modified Files:
groups.php
Log Message:
no message
Index: groups.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/modules/system/admin/groups/groups.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** groups.php 6 Aug 2002 01:20:51 -0000 1.3
--- groups.php 10 Sep 2002 04:09:29 -0000 1.4
***************
*** 11,20 ****
global $xoopsDB, $xoopsConfig, $xoopsModule;
xoops_cp_header();
! OpenTable();
echo "<h4 style='text-align:left'>"._AM_EDITADG."</h4>";
$result = $xoopsDB->query("SELECT groupid, name, type FROM ".$xoopsDB->prefix("groups")."");
! echo "<table border='0' cellpadding='0' cellspacing='0' valign='top' width='40%'>
! <tr><td class='bg2'>
! <table width='100%' border='0' cellpadding='4' cellspacing='1'>
";
$myts =& MyTextSanitizer::getInstance();
--- 11,18 ----
global $xoopsDB, $xoopsConfig, $xoopsModule;
xoops_cp_header();
! //OpenTable();
echo "<h4 style='text-align:left'>"._AM_EDITADG."</h4>";
$result = $xoopsDB->query("SELECT groupid, name, type FROM ".$xoopsDB->prefix("groups")."");
! echo "<table width='40%' border='0' cellpadding='4' cellspacing='1'>
";
$myts =& MyTextSanitizer::getInstance();
***************
*** 30,34 ****
}
}
! echo "</table></td></tr></table>";
$name_value = "";
$desc_value = "";
--- 28,32 ----
}
}
! echo "</table>";
$name_value = "";
$desc_value = "";
***************
*** 42,46 ****
$form_title = _AM_CREATENEWADG;
include(XOOPS_ROOT_PATH."/modules/system/admin/groups/groupform.php");
! CloseTable();
xoops_cp_footer();
}
--- 40,44 ----
$form_title = _AM_CREATENEWADG;
include(XOOPS_ROOT_PATH."/modules/system/admin/groups/groupform.php");
! //CloseTable();
xoops_cp_footer();
}
***************
*** 62,66 ****
}
xoops_cp_header();
! OpenTable();
echo '<a href="admin.php?fct=groups">'. _AM_GROUPSMAIN .'</a> <span style="font-weight:bold;">»»</span> '. _AM_MODIFYADG.'<br /><br />';
$thisgroup = new XoopsGroup($g_id);
--- 60,64 ----
}
xoops_cp_header();
! //OpenTable();
echo '<a href="admin.php?fct=groups">'. _AM_GROUPSMAIN .'</a> <span style="font-weight:bold;">»»</span> '. _AM_MODIFYADG.'<br /><br />';
$thisgroup = new XoopsGroup($g_id);
***************
*** 153,157 ****
</form>";
}
! CloseTable();
xoops_cp_footer();
}
--- 151,155 ----
</form>";
}
! //CloseTable();
xoops_cp_footer();
}
|