Ignore:
Timestamp:
Apr 7, 2020, 11:58:08 PM (4 years ago)
Author:
chronos
Message:
  • Added: HTML viewport for mobile devices.
  • Fixed: Updated homepage URL.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Log/Log.php

    r880 r881  
    125125    $this->Title = T('System log');
    126126    $Output = '';
    127     if (array_key_exists('type', $_GET)) $_SESSION['type'] = $_GET['type'] * 1;
     127    if (array_key_exists('type', $_GET) and (is_numeric($_GET['type']))) $_SESSION['type'] = $_GET['type'] * 1;
    128128    else if (!array_key_exists('type', $_SESSION)) $_SESSION['type'] = '';
    129129
Note: See TracChangeset for help on using the changeset viewer.