View | Details | Raw Unified | Return to bug 19735
Collapse All | Expand All

(-)a/installer/install.pl (-2 / +1 lines)
Lines 112-119 if ( $step && $step == 1 ) { Link Here
112
                {
112
                {
113
                    name    => $module,
113
                    name    => $module,
114
                    version => $stats->{'min_ver'},
114
                    version => $stats->{'min_ver'},
115
                    require => $stats->{'required'},
115
                    require => $stats->{'required'}
116
                    usage   => $stats->{'usage'},
117
                }
116
                }
118
            );
117
            );
119
        }
118
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt (-2 lines)
Lines 62-68 Link Here
62
                                [% FOREACH missing_module IN missing_modules %]
62
                                [% FOREACH missing_module IN missing_modules %]
63
                                    <li><strong>[% missing_module.name | html %]</strong> [% IF ( missing_module.require ) %]<span class="label label-danger">Required</span>[% END %]
63
                                    <li><strong>[% missing_module.name | html %]</strong> [% IF ( missing_module.require ) %]<span class="label label-danger">Required</span>[% END %]
64
                                        <br /> Version: [% missing_module.version | html %]
64
                                        <br /> Version: [% missing_module.version | html %]
65
                                        <br /> Usage: [% missing_module.usage | html %]
66
                                    </li>
65
                                    </li>
67
                                [% END %]
66
                                [% END %]
68
                            </ul>
67
                            </ul>
69
- 

Return to bug 19735