Update of /cvsroot/phpmp/phpMP/docs
In directory usw-pr-cvs1:/tmp/cvs-serv4148/docs
Modified Files:
MODULES
Log Message:
Actually fixed the module double-include bug. It didn't happen but it wasn't fixed before. Hmm.
Index: MODULES
===================================================================
RCS file: /cvsroot/phpmp/phpMP/docs/MODULES,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** MODULES 21 Jul 2002 22:29:23 -0000 1.4
--- MODULES 21 Jul 2002 22:40:44 -0000 1.5
***************
*** 22,26 ****
// (hopefully) unique developer id (just like tables and
// other such things). In this case 'MP' is the
! // developer id.
class Module { // Standard. ALWAYS included.
--- 22,27 ----
// (hopefully) unique developer id (just like tables and
// other such things). In this case 'MP' is the
! // developer id. Also, this var should be identical to
! // $MPCONF['MOD']['mod_id'].
class Module { // Standard. ALWAYS included.
***************
*** 55,59 ****
Module Database, also known as the phpmp_modules table in the user's
database. This contains the module's name, filename, Unix-qualified
! identifier, information on whether or not the module is actuve, and
any data the module wishes to store in a single-string variable (which
can be split, exploded, that sort of thing).
--- 56,60 ----
Module Database, also known as the phpmp_modules table in the user's
database. This contains the module's name, filename, Unix-qualified
! identifier, module ID, information on whether or not the module is actuve, and
any data the module wishes to store in a single-string variable (which
can be split, exploded, that sort of thing).
|