|
From: Ken T. <ke...@us...> - 2003-04-07 18:56:13
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv9290
Modified Files:
config.php
Log Message:
* Project-level Administration
- allows superadmin to delegate power to others.
- admin may assign multiple users to have administrative power on a project.
* new auth: have_perm_proj($proj_id); check_proj($proj);
* added <select> to project-form
* build_select(): in addition to 1-1 matching for selected, allow needle-in-haystack
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- config.php 6 Feb 2003 13:33:03 -0000 1.34
+++ config.php 7 Apr 2003 18:55:35 -0000 1.35
@@ -65,6 +65,7 @@
define ('TBL_USER_PREF', TBL_PREFIX.'user_pref');
define ('TBL_VERSION', TBL_PREFIX.'version');
define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
+define ('TBL_PROJECT_PERM', TBL_PREFIX.'project_perm');
define ('TBL_DATABASE', TBL_PREFIX.'database_server');
define ('TBL_SITE', TBL_PREFIX.'site');
|