diff options
Diffstat (limited to 'phpBB/admin/index.php')
-rw-r--r-- | phpBB/admin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index aba2f3f06c..a0a87431cd 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -271,7 +271,7 @@ elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) } else if( preg_match("/^mssql/", SQL_LAYER) ) { - $sql = "SELECT ((SUM(size) * 8) * 1024) as dbsize + $sql = "SELECT ((SUM(size) * 8.0) * 1024.0) as dbsize FROM sysfiles"; if( $result = $db->sql_query($sql) ) { |