Ignore:
Timestamp:
Apr 22, 2026, 10:11:45 PM (5 hours ago)
Author:
chronos
Message:
  • Fixed: IS form unknown items error handling.
  • Modified: Ping redirection to Inext local network.
File:
1 edited

Legend:

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

    r980 r983  
    464464    $Form->SetClass($Table);
    465465    $this->Title .= ' - '.$Form->Definition['Title'].' položka';
    466     $Form->LoadValuesFromDatabase($Id);
     466    try
     467    {
     468      $Form->LoadValuesFromDatabase($Id);
     469    } catch (Exception $E)
     470    {
     471      return $this->SystemMessage('Chyba', 'Položka '.$Id.' nenalezena.');
     472    }
    467473    $Form->OnSubmit = '?a=view';
    468474    $Output = $Form->ShowViewForm();
Note: See TracChangeset for help on using the changeset viewer.