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

(-)a/about.pl (-1 / +4 lines)
Lines 531-537 if ( defined C4::Context->config('docdir') ) { Link Here
531
}
531
}
532
532
533
## Contributors
533
## Contributors
534
my $contributors = LoadFile("$docdir"."/contributors.yaml");
534
my $contributors =
535
  -e "$docdir" . "/contributors.yaml"
536
  ? LoadFile( "$docdir" . "/contributors.yaml" )
537
  : {};
535
my @people = map {
538
my @people = map {
536
    {
539
    {
537
        name => $_,
540
        name => $_,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-6 / +11 lines)
Lines 469-479 Link Here
469
            </ul>
469
            </ul>
470
470
471
            <h2>Koha development team</h2>
471
            <h2>Koha development team</h2>
472
            <ul class="columns-4">
472
            [% IF contributors.size %]
473
                [% FOREACH contributor IN contributors %]
473
                <ul class="columns-4">
474
                <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
474
                    [% FOREACH contributor IN contributors %]
475
                [% END %]
475
                    <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
476
            </ul>
476
                    [% END %]
477
                </ul>
478
            [% ELSE %]
479
                <div class="dialog alert">
480
                    Could not read the contributors.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
481
                </div>
482
            [% END %]
477
            <hr>
483
            <hr>
478
484
479
            <h2>Contributing companies and institutions</h2>
485
            <h2>Contributing companies and institutions</h2>
480
- 

Return to bug 22893