Changeset 4439d2a in github
- Timestamp:
- Jul 19, 2009 3:27:05 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- a640647
- Parents:
- 3541d0e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/subscriptions_option/subscriptions_option.php
rb44cd3a8 r4439d2a 43 43 $use_subscriptions = rcmail::get_instance()->config->get('use_subscriptions'); 44 44 $field_id = 'rcmfd_use_subscriptions'; 45 $ use_subscriptions= new html_checkbox(array('name' => '_use_subscriptions', 'id' => $field_id, 'value' => 1));45 $checkbox = new html_checkbox(array('name' => '_use_subscriptions', 'id' => $field_id, 'value' => 1)); 46 46 47 47 $args['table']->add('title', html::label($field_id, Q($this->gettext('useimapsubscriptions')))); 48 $args['table']->add(null, $ use_subscriptions->show($use_subscriptions?1:0));48 $args['table']->add(null, $checkbox->show($use_subscriptions?1:0)); 49 49 } 50 50
Note: See TracChangeset
for help on using the changeset viewer.
