mirror of
https://github.com/e107inc/e107.git
synced 2025-01-29 10:38:08 +01:00
Banner admin - code clean-up and notes
This commit is contained in:
parent
0dd2a038a3
commit
04096d2c9d
@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
|
||||
// TODO FIXME needs validation (e.g. Click URL field is not checked to be sure it's an URL)
|
||||
// TODO FIXME needs validation (e.g. Click URL field is not checked to be sure it's an URL) - also required fields?
|
||||
|
||||
require_once('../../class2.php');
|
||||
if (!getperms('D'))
|
||||
@ -320,21 +320,6 @@ if ($action == "create")
|
||||
$_POST['banner_startdate'] = $banner_row['banner_startdate'];
|
||||
$_POST['banner_enddate'] = $banner_row['banner_enddate'];
|
||||
|
||||
/*
|
||||
if ($banner_row['banner_startdate']) {
|
||||
$tmp = getdate($banner_row['banner_startdate']);
|
||||
$_POST['startmonth'] = $tmp['mon'];
|
||||
$_POST['startday'] = $tmp['mday'];
|
||||
$_POST['startyear'] = $tmp['year'];
|
||||
}
|
||||
if ($banner_row['banner_enddate']) {
|
||||
$tmp = getdate($banner_row['banner_enddate']);
|
||||
$_POST['endmonth'] = $tmp['mon'];
|
||||
$_POST['endday'] = $tmp['mday'];
|
||||
$_POST['endyear'] = $tmp['year'];
|
||||
}
|
||||
*/
|
||||
|
||||
if (strpos($_POST['banner_campaign'], "^") !== FALSE) {
|
||||
$campaignsplit = explode("^", $_POST['banner_campaign']);
|
||||
$listtypearray = explode("-", $campaignsplit[1]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user