Skip to content

Commit

Permalink
Fix #194 Changed variable to {$var} syntax (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
sambenskin committed Jan 27, 2023
1 parent 9221bfe commit bf71b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function getDbInfo($d, $info, $padding = '') {
return false; // we don't show empty dbs, so return false to tell the caller to continue the loop
}

$dbinfo = sprintf("$prefix%'.-${padding}d", $d);
$dbinfo = sprintf("$prefix%'.-{$padding}d", $d);
if ($dbHasData) {
$dbinfo = sprintf("%s (%d)", $dbinfo, $info['Keyspace'][$db]['keys']);
}
Expand Down

0 comments on commit bf71b74

Please sign in to comment.