mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 12:31:06 -05:00
fix #426
This commit is contained in:
parent
9013ec4b15
commit
4a0f12ec5a
@ -85,7 +85,6 @@
|
||||
</label>
|
||||
<?php
|
||||
$expire_extra = 'id="expire" class="select" tabindex="7"';
|
||||
$default_expiration = config_item('default_expiration');
|
||||
$options = array(
|
||||
"burn" => lang('exp_burn'),
|
||||
"5" => lang('exp_5min'),
|
||||
@ -98,7 +97,7 @@
|
||||
if(! config_item('disable_keep_forever')) {
|
||||
$options['0'] = lang('exp_forever');
|
||||
}
|
||||
echo form_dropdown('expire', $options, $default_expiration, $expire_extra); ?>
|
||||
echo form_dropdown('expire', $options, $expire_set, $expire_extra); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -86,7 +86,6 @@
|
||||
</label>
|
||||
<?php
|
||||
$expire_extra = 'id="expire" class="select" tabindex="7"';
|
||||
$default_expiration = config_item('default_expiration');
|
||||
$options = array(
|
||||
"burn" => lang('exp_burn'),
|
||||
"5" => lang('exp_5min'),
|
||||
@ -99,7 +98,7 @@
|
||||
if(! config_item('disable_keep_forever')) {
|
||||
$options['0'] = lang('exp_forever');
|
||||
}
|
||||
echo form_dropdown('expire', $options, $default_expiration, $expire_extra); ?>
|
||||
echo form_dropdown('expire', $options, $expire_set, $expire_extra); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -92,7 +92,6 @@
|
||||
</label>
|
||||
<?php
|
||||
$expire_extra = 'id="expire" class="select" tabindex="7"';
|
||||
$default_expiration = config_item('default_expiration');
|
||||
$options = array(
|
||||
"burn" => lang('exp_burn'),
|
||||
"5" => lang('exp_5min'),
|
||||
@ -105,7 +104,7 @@
|
||||
if(! config_item('disable_keep_forever')) {
|
||||
$options['0'] = lang('exp_forever');
|
||||
}
|
||||
echo form_dropdown('expire', $options, $default_expiration, $expire_extra); ?>
|
||||
echo form_dropdown('expire', $options, $expire_set, $expire_extra); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user