Page 1 of 1

Where to change date format

Posted: Thu Dec 30, 2021 12:09 pm
by wellandg
Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

Want to change date format in the admin panel from US (YYYY-MM-DD) to UK (DD-MM-YYYY). Which file is the setting in?

Wellandg

Re: Where to change date format

Posted: Thu Dec 30, 2021 9:15 pm
by Klemen
There's no setting for it, you will need to change code

Code: Select all

date('Y-m-d')
to

Code: Select all

date('d-m-Y')
in file admin/new_link.php

Note that this will only affect new links you add. For existing ones, you will need to edit the dates in ccount_database.php file. It is really easy to mess up the database file, so back it up before making changes!

Re: Where to change date format

Posted: Fri Dec 31, 2021 12:09 pm
by wellandg
Thanks for the help