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

(-)a/C4/UsageStats.pm (-1 / +1 lines)
Lines 355-361 sub ReportToCommunity { Link Here
355
    my $data = shift;
355
    my $data = shift;
356
    my $json = encode_json($data);
356
    my $json = encode_json($data);
357
357
358
    my $url = "http://hea.koha-community.org/upload.pl";
358
    my $url = "https://hea.koha-community.org/upload.pl";
359
    my $ua = LWP::UserAgent->new;
359
    my $ua = LWP::UserAgent->new;
360
    my $res = $ua->post(
360
    my $res = $ua->post(
361
        $url,
361
        $url,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt (-2 / +1 lines)
Lines 230-236 Link Here
230
                <li>
230
                <li>
231
                    <label for="MyPublicLink">See your public page: </label>
231
                    <label for="MyPublicLink">See your public page: </label>
232
                    [% IF Koha.Preference('UsageStatsPublicID') %]
232
                    [% IF Koha.Preference('UsageStatsPublicID') %]
233
                        [% SET my_url = 'http://hea.koha-community.org/libraries/' _  Koha.Preference('UsageStatsPublicID') %]
233
                        [% SET my_url = 'https://hea.koha-community.org/libraries/' _  Koha.Preference('UsageStatsPublicID') %]
234
                        <a href="[% my_url %]">[% my_url %]</a>
234
                        <a href="[% my_url %]">[% my_url %]</a>
235
                    [% ELSE %]
235
                    [% ELSE %]
236
                        You do not have anything public yet.
236
                        You do not have anything public yet.
237
- 

Return to bug 18066