diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-11-15 16:14:30 -0800 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-15 16:14:30 -0800 | 
| commit | 9e5714aee817637ee954e8529da33c1be6f7ef19 (patch) | |
| tree | ba25e68b2127e427a73931151946a6157f5a9a18 /modules/gallery/controllers | |
| parent | 6ec81006e7ac8ebc61d15af22e3bbda782c46b68 (diff) | |
Tweak upgrader html and css so that we set opacity properly for rows
that are done, and disable the upgrade link when there're no actions
to take.
Diffstat (limited to 'modules/gallery/controllers')
| -rw-r--r-- | modules/gallery/controllers/upgrader.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/gallery/controllers/upgrader.php b/modules/gallery/controllers/upgrader.php index a86e8af9..48769bce 100644 --- a/modules/gallery/controllers/upgrader.php +++ b/modules/gallery/controllers/upgrader.php @@ -43,7 +43,7 @@ class Upgrader_Controller extends Controller {      $view->can_upgrade = identity::active_user()->admin || $session->get("can_upgrade");      $view->upgrade_token = $upgrade_token;      $view->available = module::available(); -    $view->done = ($available_upgrades == 0); +    $view->done = $available_upgrades == 0;      print $view;    } | 
