Update of /cvsroot/xoops/xoops-current/html/modules/system/admin/modulesadmin
In directory usw-pr-cvs1:/tmp/cvs-serv27748
Modified Files:
modulesadmin.php
Log Message:
no message
Index: modulesadmin.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/modules/system/admin/modulesadmin/modulesadmin.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** modulesadmin.php 22 Sep 2002 06:08:38 -0000 1.7
--- modulesadmin.php 22 Sep 2002 06:14:35 -0000 1.8
***************
*** 129,133 ****
}
}
! return "<p>".sprintf(_MD_AM_FAILINS, "<b>".$mymodule->name()."</b>")." "._MD_AM_ERRORSC."<br /> - ".sprintf(_MD_AM_ALEXISTS, $module)."</p>";
}
--- 129,133 ----
}
}
! return "<p>".sprintf(_MD_AM_FAILINS, "<b>".$module."</b>")." "._MD_AM_ERRORSC."<br /> - ".sprintf(_MD_AM_ALEXISTS, $module)."</p>";
}
***************
*** 348,352 ****
$moveLayers[$tree[$cnt][4]] .= "setleft('" . $layer_label[$cnt] . "'," . $abscissa[$tree[$cnt][0]] . ");\n";
}
! if (!isset()) {
$moveLayers[$tree[$cnt][4]] = "settop('" . $layer_label[$cnt] . "'," . $ordinata[$tree[$cnt][0]] . ");\n";
} else {
--- 348,352 ----
$moveLayers[$tree[$cnt][4]] .= "setleft('" . $layer_label[$cnt] . "'," . $abscissa[$tree[$cnt][0]] . ");\n";
}
! if (!isset($moveLayers[$tree[$cnt][4]])) {
$moveLayers[$tree[$cnt][4]] = "settop('" . $layer_label[$cnt] . "'," . $ordinata[$tree[$cnt][0]] . ");\n";
} else {
***************
*** 356,360 ****
// the new layer is accounted for in the shutdown() function
! $shutdown[$tree[$cnt][4]] .= "popUp('" . $layer_label[$cnt] . "',false);\n";
}
if ($tree[$cnt+1][0]>$tree[$cnt][0] && $cnt<$tmpcount) {
--- 356,364 ----
// the new layer is accounted for in the shutdown() function
! if (!isset($shutdown[$tree[$cnt][4]])) {
! $shutdown[$tree[$cnt][4]] = "popUp('" . $layer_label[$cnt] . "',false);\n";
! } else {
! $shutdown[$tree[$cnt][4]] .= "popUp('" . $layer_label[$cnt] . "',false);\n";
! }
}
if ($tree[$cnt+1][0]>$tree[$cnt][0] && $cnt<$tmpcount) {
***************
*** 402,406 ****
}
if (!isset($firstleveltable[$tree[$cnt][4]])) {
! $firstleveltable[$tree[$cnt][4]] .= "<a href='" . $currentlink . "'" . $onmouseover . "'" . $currenttarget . ">" . $tree[$cnt][5] . "</a>" . $currentarrow . "<br />\n";
} else {
$firstleveltable[$tree[$cnt][4]] .= "<a href='" . $currentlink . "'" . $onmouseover . "'" . $currenttarget . ">" . $tree[$cnt][5] . "</a>" . $currentarrow . "<br />\n";
--- 406,410 ----
}
if (!isset($firstleveltable[$tree[$cnt][4]])) {
! $firstleveltable[$tree[$cnt][4]] = "<a href='" . $currentlink . "'" . $onmouseover . "'" . $currenttarget . ">" . $tree[$cnt][5] . "</a>" . $currentarrow . "<br />\n";
} else {
$firstleveltable[$tree[$cnt][4]] .= "<a href='" . $currentlink . "'" . $onmouseover . "'" . $currenttarget . ">" . $tree[$cnt][5] . "</a>" . $currentarrow . "<br />\n";
|