From: Brian Quinion Date: Sat, 8 Dec 2012 18:56:59 +0000 (+0000) Subject: tiny formating change to utils/blocks.php X-Git-Tag: v2.2.0~167 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/539d187b5c5d45d6ac9dfd5ad52b7ec35ed73e0d tiny formating change to utils/blocks.php --- diff --git a/utils/blocks.php b/utils/blocks.php index 4732abb1..d2db17f0 100755 --- a/utils/blocks.php +++ b/utils/blocks.php @@ -29,7 +29,7 @@ $aBlocks = getBucketBlocks(); echo "\n"; printf(" %-40s | %12s | %7s | %13s | %16s | %31s\n", "Key", "Total Blocks", "Current", "Still Blocked", "Last Req Blocked", "Last Block Time"); - printf(" %'--40s | %'-12s | %'-7s | %'-13s | %'-16s | %'-31s\n", "", "", "", "", "", ""); + printf(" %'--40s-|-%'-12s-|-%'-7s-|-%'-13s-|-%'-16s-|-%'-31s\n", "", "", "", "", "", ""); foreach($aBlocks as $sKey => $aDetails) { printf(" %-40s | %12s | %7s | %13s | %16s | %31s\n", $sKey, $aDetails['totalBlocks'], (int)$aDetails['currentBucketSize'], $aDetails['lastRequestBlocked']?'Y':'N', $aDetails['currentlyBlocked']?'Y':'N', date("r", $aDetails['lastBlockTimestamp']));