if you open /modules/boonex/ads/BxAdsModule.php look around line 739 for:
$sMaxedString = _t('_bx_ads_Warn_max_live_days', 30);
And look for this these lines around 871-887
'LifeTime' => array(
'type' => 'select',
'name' => 'LifeTime',
'caption' => _t('_bx_ads_Life_Time') . " ({$sDaysC})",
'info' => $sMaxedString,
'value' => 30,
'values' => $aLifeTimeValues,
'required' => true,
'checker' => array (
'func' => 'length',
'params' => array(1,2),
'error' => _t('_Error Occured'),
),
'db' => array (
'pass' => 'Int',
),
),
This should allow you to either not make it required at all or set them to say 365 for a whole year.
This is correct but you will aslo need to change 'params' =>array(1,2), to 'params' =>array(1,3), to enable this to work.
'LifeTime' => array(
'type' => 'select',
'name' => 'LifeTime',
'caption' => _t('_bx_ads_Life_Time') . " ({$sDaysC})",
'info' => $sMaxedString,
'value' => 360,
'values' => $aLifeTimeValues,
'required' => true,
'checker' => array (
'func' => 'length',
'params' => array(1,3),
'error' => _t('_Error Occured')