aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/admin/index.php')
-rw-r--r--phpBB/admin/index.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php
index f02802db1e..aba2f3f06c 100644
--- a/phpBB/admin/index.php
+++ b/phpBB/admin/index.php
@@ -271,11 +271,8 @@ elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' )
}
else if( preg_match("/^mssql/", SQL_LAYER) )
{
- $sql = "SELECT ( SELECT SUM(reserved)
- FROM sysindexes where indid in(0,1,255))
- * low AS dbsize
- FROM master.dbo.spt_values
- WHERE number = 1 AND type = 'E'";
+ $sql = "SELECT ((SUM(size) * 8) * 1024) as dbsize
+ FROM sysfiles";
if( $result = $db->sql_query($sql) )
{
$dbsize = ( $row = $db->sql_fetchrow($result) ) ? intval($row['dbsize']) : $lang['Not_available'];