XFileSharing Pro - Personal user storage space limit
Personal user storage space limit
Personal user storage space limit is not working wen edit from admin setting ?
Re: Personal user storage space limit
What do you mean exactly by "not working"?
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
It's only displaying wrong in My Account. Logic works fine anyway.
Fixed index.cgi in script ZIP, you can get the latest version and update.
Or you can manually fix index.cgi:
replace
with
Fixed index.cgi in script ZIP, you can get the latest version and update.
Or you can manually fix index.cgi:
replace
Code: Select all
my $disk_space = sprintf("%.0f GB",$disk_space/1024);
Code: Select all
my $disk_space = $user->{usr_disk_space} || $c->{disk_space};
$disk_space = sprintf("%.0f GB",$disk_space/1024);