Thought I found it but it didn't change the text haha: /app/controllers/client_pay.php
$expiration = array(
// Get months with full name (e.g. "January")
'months' => $this->Date->getMonths(1, 12, "m", "m F"),
// Sets years from the current year to 10 years in the future
'years' => $years
);
Edit: Ah I am blind thanks Naja7Host In the file: /app/controllers/client_accounts.php:
$expiration = array(
// Get months with full name (e.g. "January")
'months' => $this->Date->getMonths(1, 12, "m", "F"),
// Sets years from the current year to 10 years in the future
'years' => $years
);
Change:
$expiration = array(
// Get months with full name (e.g. "January")
'months' => $this->Date->getMonths(1, 12, "m", "m F"),
// Sets years from the current year to 10 years in the future
'years' => $years
);
The admin side is in: /app/controllers/admin_clients.php: