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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (+2 lines)
Lines 376-381 OPAC: Link Here
376
                  yes: Allow
376
                  yes: Allow
377
                  no: "Don't allow"
377
                  no: "Don't allow"
378
            - patrons to submit problem reports for OPAC pages to the library or Koha Administrator.
378
            - patrons to submit problem reports for OPAC pages to the library or Koha Administrator.
379
            - "<br/>"
380
            - "<strong>NOTE:</strong> You must have KohaAdminEmailAddress enabled."
379
        -
381
        -
380
            - pref: opacuserlogin
382
            - pref: opacuserlogin
381
              choices:
383
              choices:
(-)a/opac/opac-reportproblem.pl (-2 / +3 lines)
Lines 40-46 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
40
    }
40
    }
41
);
41
);
42
42
43
if ( !C4::Context->preference('OPACReportProblem') ){
43
if (   !C4::Context->preference('OPACReportProblem')
44
    || !C4::Context->preference('KohaAdminEmailAddress') )
45
{
44
    print $input->redirect("/cgi-bin/koha/errors/404.pl");
46
    print $input->redirect("/cgi-bin/koha/errors/404.pl");
45
}
47
}
46
48
47
- 

Return to bug 4461