Update of /cvsroot/openfirst/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23844
Modified Files:
index.php
Log Message:
Added class liteModule
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/base/index.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** index.php 27 May 2005 00:02:24 -0000 1.14
--- index.php 27 May 2005 16:07:51 -0000 1.15
***************
*** 39,43 ****
<tr>
<?php
! if(isset($headers) == false) {
echo("You may: <a href='config/'>login to configure openFIRST options</a>.");
}
--- 39,43 ----
<tr>
<?php
! if(isset($Headers) == false) {
echo("You may: <a href='config/'>login to configure openFIRST options</a>.");
}
***************
*** 86,94 ****
echo '<ul>
';
! foreach($Modules as $code=>$info) {
! if ($info['active']
! #&& $info['show']
) {
! echo '<li><a href="'.htmlentities("$BasePath/$code").'">'.htmlentities($info['name']).'</a></li>
';
}
--- 86,94 ----
echo '<ul>
';
! foreach($Modules as $code=>$mod) {
! if ($mod->getActive()
! #&& $mod->getShowOnMenu()
) {
! echo '<li><a href="'.htmlentities("$BasePath/$code").'">'.htmlentities($mod->getName()).'</a></li>
';
}
|