Skip to content

Commit bf71b74

Browse files
authored
Fix #194 Changed variable to {$var} syntax (#195)
1 parent 9221bfe commit bf71b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function getDbInfo($d, $info, $padding = '') {
154154
return false; // we don't show empty dbs, so return false to tell the caller to continue the loop
155155
}
156156

157-
$dbinfo = sprintf("$prefix%'.-${padding}d", $d);
157+
$dbinfo = sprintf("$prefix%'.-{$padding}d", $d);
158158
if ($dbHasData) {
159159
$dbinfo = sprintf("%s (%d)", $dbinfo, $info['Keyspace'][$db]['keys']);
160160
}

0 commit comments

Comments
 (0)