Ignore:
Timestamp:
Sep 22, 2023, 11:55:38 PM (8 months ago)
Author:
chronos
Message:
  • Added: Store request URL into Log table.
  • Fixed: Some warnings for invalid inputs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r953 r957  
    398398}
    399399
    400 function ExeceuteNoError(callable $Function): void
     400function ExecuteNoError(callable $Function): void
    401401{
    402402  try
     
    404404    $LastErrorReporting = error_reporting();
    405405    error_reporting(0);
    406     $function();
     406    $Function();
    407407  }
    408408  finally
Note: See TracChangeset for help on using the changeset viewer.