]> git.openstreetmap.org Git - nominatim.git/commitdiff
tiny formating change to utils/blocks.php
authorBrian Quinion <openstreetmap@brian.quinion.co.uk>
Sat, 8 Dec 2012 18:56:59 +0000 (18:56 +0000)
committerBrian Quinion <openstreetmap@brian.quinion.co.uk>
Sat, 8 Dec 2012 18:56:59 +0000 (18:56 +0000)
utils/blocks.php

index 4732abb1e0c2421de17d81019b339057085f6459..d2db17f0e9478b60e9dbc8e9f9faf8cb3a8e6c1b 100755 (executable)
@@ -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']));