Changeset 219

Show
Ignore:
Timestamp:
10/25/07 12:15:08 (15 months ago)
Author:
tgenannt
Message:

- Fixed size display for 0 MB domains

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/includes/func.inc.php

    r218 r219  
    8484 
    8585function mailbox_size_human($size) { 
     86        if( empty($size) ) 
     87                $size = 0; 
    8688        if ($size > 1024) { 
    8789                $mb_size['size']=sprintf("%01.2f",$size/1024);