Update of /cvsroot/phpmp/phpMP/modules
In directory usw-pr-cvs1:/tmp/cvs-serv17457/modules
Modified Files:
menu_side.php
Log Message:
Updated DBA for mySQL. Updated templating procedure.
Index: menu_side.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/modules/menu_side.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** menu_side.php 11 Apr 2002 03:26:02 -0000 1.2
--- menu_side.php 11 Apr 2002 04:15:39 -0000 1.3
***************
*** 12,16 ****
$content .= $MPCONF['TPL']['bullet_html'] . ' <a href="' . $MPCONF['GEN']['uri'] . '/index.php">Home</a><br>' . "\n";
! $result = $DBA->query("SELECT name,unixname FROM " . $MPCONF['DB']['table_prefix'] . "modules WHERE active='1' SORT BY name");
while($row = @mysql_fetch_array($result)) {
$content .= makeLink($row['name'], $row['unixname']);
--- 12,16 ----
$content .= $MPCONF['TPL']['bullet_html'] . ' <a href="' . $MPCONF['GEN']['uri'] . '/index.php">Home</a><br>' . "\n";
! $result = $DBA->query("SELECT name,unixname FROM " . $MPCONF['DB']['table_prefix'] . "modules WHERE active='1'");
while($row = @mysql_fetch_array($result)) {
$content .= makeLink($row['name'], $row['unixname']);
|