Snowman Posted February 5, 2010 Share Posted February 5, 2010 Is there a way to change the quota functions from Mb to display in Gb instead throughout the system? 0 Quote Link to comment Share on other sites More sharing options...
HerrZ Posted February 5, 2010 Share Posted February 5, 2010 You could convert the values with php function number_format. <?php $diskspace = '2000'; echo "Megabyte: " . $diskspace . "MB"; echo "<br />Gigabyte: " . number_format( $diskspace/(1024) ) . "GB"; ?> 0 Quote Link to comment Share on other sites More sharing options...
Snowman Posted February 5, 2010 Author Share Posted February 5, 2010 i was referring more to the language files in the admin etc for example on the package setup page the specs are in Mb instead of Gb so the packages show X amount of Mb instead of in Gb 0 Quote Link to comment Share on other sites More sharing options...
HerrZ Posted February 5, 2010 Share Posted February 5, 2010 check your lettering in configurable Options 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.