Update of /cvsroot/phpmp/phpMP/docs
In directory usw-pr-cvs1:/tmp/cvs-serv22717/docs
Modified Files:
MODULES
Log Message:
Moved a few template variables around. Before, the site name was hardcoded into the system. Now, it is referenced only in templates, where it should be.
Index: MODULES
===================================================================
RCS file: /cvsroot/phpmp/phpMP/docs/MODULES,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** MODULES 23 Apr 2002 08:14:55 -0000 1.2
--- MODULES 21 Jul 2002 21:43:33 -0000 1.3
***************
*** 31,35 ****
// If you need to call other functions after this one, call them at the end.
global $Template; // Makes the $Template class global.
! $Template->Blocking('BeginBig', array(PAGETITLE => ".:: phpMP :: " . $this->pagetitle . "::.")); // Begins a 'big' middle block.
print "This is a test...<br>This is only a test...<br>\n"; // Prints a line.
--- 31,35 ----
// If you need to call other functions after this one, call them at the end.
global $Template; // Makes the $Template class global.
! $Template->Blocking('BeginBig', array(PAGETITLE => $this->pagetitle)); // Begins a 'big' middle block.
print "This is a test...<br>This is only a test...<br>\n"; // Prints a line.
|