tidy appdb html to make it validate - try 4

This commit is contained in:
Jeff Zaroyko
2008-02-23 12:06:24 +11:00
committed by Chris Morgan
parent ccbc842d5c
commit 16949bb71c
50 changed files with 414 additions and 411 deletions

View File

@@ -12,7 +12,7 @@ apidb_header("Maintiner notification info");
// display all currently notified maintainers
$hResult = maintainer::objectGetEntries(false, false);
echo "Maintainers with a non-zero notification level<br />\n";
echo "Maintainers with a non-zero notification level<br>\n";
$bFoundNonZero = false;
while($oRow = query_fetch_object($hResult))
@@ -22,24 +22,24 @@ while($oRow = query_fetch_object($hResult))
if($oMaintainer->iNotificationLevel != 0)
{
$bFoundNonZero = true;
echo "iMaintainerId: $oMaintainer->iMaintainerId<br />";
echo "iNotificationLevel: $oMaintainer->iNotificationLevel<br />";
echo "<br />\n";
echo "iMaintainerId: $oMaintainer->iMaintainerId<br>";
echo "iNotificationLevel: $oMaintainer->iNotificationLevel<br>";
echo "<br>\n";
}
}
if(!$bFoundNonZero)
{
echo "No maintainers have a non-zero notification level<br />\n";
echo "No maintainers have a non-zero notification level<br>\n";
}
echo "<br />\n";
echo "<br />\n";
echo "<br>\n";
echo "<br>\n";
// retrieve all of the maintainers
echo "Maintainers with notification iTargetLevel != 0<br />\n";
echo "Maintainers with notification iTargetLevel != 0<br>\n";
$hResult = maintainer::objectGetEntries(false, false);
while($oRow = query_fetch_object($hResult))
{
@@ -49,10 +49,10 @@ while($oRow = query_fetch_object($hResult))
if($oNotificationUpdate->iTargetLevel != 0)
{
echo "iMaintainerId: $oMaintainer->iMaintainerId<br />\n";
echo "iNotificationLevel: $oMaintainer->iNotificationLevel<br />\n";
echo "iTargetLevel: $oNotificationUpdate->iTargetLevel<br />\n";
echo "<br />\n";
echo "iMaintainerId: $oMaintainer->iMaintainerId<br>\n";
echo "iNotificationLevel: $oMaintainer->iNotificationLevel<br>\n";
echo "iTargetLevel: $oNotificationUpdate->iTargetLevel<br>\n";
echo "<br>\n";
}
}