mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-05-05 09:50:55 -05:00
parent
f41bf984c9
commit
72e30a99c5
@ -130,6 +130,7 @@ $config['enable_captcha'] = true;
|
||||
$config['recaptcha_publickey'] = '';
|
||||
$config['recaptcha_privatekey'] = '';
|
||||
$config['disable_api'] = false;
|
||||
$config['disable_keep_forever'] = false;
|
||||
$config['blocked_words'] = '';
|
||||
$config['disable_shorturl'] = false;
|
||||
$config['disallow_search_engines'] = false;
|
||||
|
@ -93,7 +93,6 @@
|
||||
<?php
|
||||
$expire_extra = 'id="expire" class="select" tabindex="7"';
|
||||
$options = array(
|
||||
"0" => lang('exp_forever'),
|
||||
"5" => lang('exp_5min'),
|
||||
"60" => lang('exp_1h'),
|
||||
"1440" => lang('exp_1d'),
|
||||
@ -101,6 +100,9 @@
|
||||
"40320" => lang('exp_1m'),
|
||||
"483840" => lang('exp_1y'),
|
||||
);
|
||||
if(! config_item('disable_keep_forever')) {
|
||||
$options['0'] = lang('exp_forever');
|
||||
}
|
||||
echo form_dropdown('expire', $options, $expire_set, $expire_extra); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -91,7 +91,6 @@
|
||||
<?php
|
||||
$expire_extra = 'id="expire" class="select" tabindex="7"';
|
||||
$options = array(
|
||||
"0" => lang('exp_forever'),
|
||||
"5" => lang('exp_5min'),
|
||||
"60" => lang('exp_1h'),
|
||||
"1440" => lang('exp_1d'),
|
||||
@ -99,6 +98,9 @@
|
||||
"40320" => lang('exp_1m'),
|
||||
"483840" => lang('exp_1y'),
|
||||
);
|
||||
if(! config_item('disable_keep_forever')) {
|
||||
$options['0'] = lang('exp_forever');
|
||||
}
|
||||
echo form_dropdown('expire', $options, $expire_set, $expire_extra); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user