fixes in authorities. Now, it should work well...
[koha.git] / mainpage.pl
index 78c7080..5ce77fb 100755 (executable)
@@ -4,12 +4,25 @@ use strict;
 require Exporter;
 use C4::Database;
 use C4::Output;  # contains gettemplate
+use C4::Interface::CGI::Output;
 use CGI;
 use C4::Auth;
 
 my $query = new CGI;
-my ($loggedinuser, $cookie, $sessionID) = checkauth($query);
+my ($template, $loggedinuser, $cookie)
+    = get_template_and_user({template_name => "intranet-main.tmpl",
+                            query => $query,
+                            type => "intranet",
+                            authnotrequired => 0,
+                            flagsrequired => {catalogue => 1, circulate => 1,
+                                                       parameters => 1, borrowers => 1,
+                                                       permissions =>1, reserveforothers=>1,
+                                                       borrow => 1, reserveforself => 1,
+                                                       editcatalogue => 1, updatecharges => 1, },
+                            debug => 1,
+                            });
 
-my $template = gettemplate("intranet-main.tmpl");
+my $marc_p = C4::Context->boolean_preference("marc");
+$template->param(NOTMARC => !$marc_p);
 
-print "Content-Type: text/html\n\n", $template->output;
+output_html_with_http_headers $query, $cookie, $template->output;