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

(-)a/C4/Auth.pm (-3 / +2 lines)
Lines 85-91 C4::Auth - Authenticates Koha users Link Here
85
            template_name   => "opac-main.tmpl",
85
            template_name   => "opac-main.tmpl",
86
            query           => $query,
86
            query           => $query,
87
      type            => "opac",
87
      type            => "opac",
88
      authnotrequired => 1,
88
      authnotrequired => 0,
89
      flagsrequired   => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
89
      flagsrequired   => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
90
  }
90
  }
91
    );
91
    );
Lines 109-115 automatically. This gets loaded into the template. Link Here
109
         template_name   => "opac-main.tmpl",
109
         template_name   => "opac-main.tmpl",
110
         query           => $query,
110
         query           => $query,
111
         type            => "opac",
111
         type            => "opac",
112
         authnotrequired => 1,
112
         authnotrequired => 0,
113
         flagsrequired   => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
113
         flagsrequired   => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
114
       }
114
       }
115
     );
115
     );
116
- 

Return to bug 11715