mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
expiration date is sepearated by '-' instead of '/'
This commit is contained in:
parent
5213e057b3
commit
4e27d0ce6b
|
@ -220,7 +220,7 @@ if ($_FILES['userfile']['error'] == 0) {
|
|||
$expires = false;
|
||||
if ($_POST["expires"] != "false") {
|
||||
if($_POST["expdate"]) {
|
||||
$tmp = explode('/', $_POST["expdate"]);
|
||||
$tmp = explode('-', $_POST["expdate"]);
|
||||
$expires = mktime(0,0,0, $tmp[1], $tmp[0], $tmp[2]);
|
||||
} else {
|
||||
$expires = mktime(0,0,0, $_POST["expmonth"], $_POST["expday"], $_POST["expyear"]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user