call-by-reference fix
This commit is contained in:
parent
ab4adf6a61
commit
14f36b2be2
|
@ -233,14 +233,15 @@ function showMainPage($scope) {
|
||||||
}
|
}
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
|
$RDNs = getRDNAttributes($scope);
|
||||||
// DN attributes
|
// DN attributes
|
||||||
$sampleCSV_row[] = "\"" . $_SESSION['config']->get_Suffix($scope) . "\"";
|
$sampleCSV_row[] = "\"" . $_SESSION['config']->get_Suffix($scope) . "\"";
|
||||||
$sampleCSV_row[] = "\"" . array_shift(getRDNAttributes($scope)) . "\"";
|
$sampleCSV_row[] = "\"" . $RDNs[0] . "\"";
|
||||||
echo "<td>\n";
|
echo "<td>\n";
|
||||||
echo $_SESSION['config']->get_Suffix($scope);
|
echo $_SESSION['config']->get_Suffix($scope);
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "<td>\n";
|
echo "<td>\n";
|
||||||
echo array_shift(getRDNAttributes($scope));
|
echo $RDNs[0];
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
// module attributes
|
// module attributes
|
||||||
for ($m = 0; $m < sizeof($modules); $m++) {
|
for ($m = 0; $m < sizeof($modules); $m++) {
|
||||||
|
|
Loading…
Reference in New Issue