The branch, master has been updated via 755fc28b49b3012cc80881720f54f5c3781285ea (commit) from 4b3780760ce251cdcb351ba51a5374f1529951ad (commit)
- Log ----------------------------------------------------------------- commit 755fc28b49b3012cc80881720f54f5c3781285ea Author: Michal Čihař mcihar@novell.com Date: Tue May 24 13:08:10 2011 +0200
Add space between size and unit
-----------------------------------------------------------------------
Summary of changes: libraries/display_tbl.lib.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 6fa8e9b..036536c 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -2381,7 +2381,7 @@ function PMA_handle_non_printable_contents($category, $content, $transform_funct } elseif (isset($content)) { $size = strlen($content); $display_size = PMA_formatByteDown($size, 3, 1); - $result .= ' - '. $display_size[0] . $display_size[1]; + $result .= ' - '. $display_size[0] . ' ' . $display_size[1]; } $result .= ']';
hooks/post-receive