Changeset 4439d2a in github


Ignore:
Timestamp:
Jul 19, 2009 3:27:05 AM (4 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
a640647
Parents:
3541d0e
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/subscriptions_option/subscriptions_option.php

    rb44cd3a8 r4439d2a  
    4343            $use_subscriptions = rcmail::get_instance()->config->get('use_subscriptions'); 
    4444            $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)); 
    4646 
    4747            $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)); 
    4949        } 
    5050 
Note: See TracChangeset for help on using the changeset viewer.