Hi,
is it possible to change the date format on the download page to the UK standard dd-mm-yyyy
Cheers
XFileSharing Free - Changing the date format
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Sure. In index.cgi find this line
and add this code below:
Code: Select all
&message("Sorry but this file reached max downloads limit") if $c->{max_downloads_number} && $file->{downloads} >= $c->{max_downloads_number};
Code: Select all
$file->{created}=~s/(\d+)-(\d+)-(\d+)/$3-$2-$1/;