Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Finance/Trade.php

    r873 r874  
    6565    $Row = $DbResult->fetch_array();
    6666    $Balance['SmallAssets']['End'] = $Row[0] + 0;
    67     return ($Balance);
     67    return $Balance;
    6868  }
    6969
     
    427427  {
    428428    if (!$this->System->User->CheckPermission('Finance', 'TradingStatus'))
    429       return ('Nemáte oprávnění');
     429      return 'Nemáte oprávnění';
    430430
    431431    $Finance = &$this->System->Modules['Finance'];
     
    478478        $Output = $this->ShowDefault();
    479479    }
    480     return ($Output);
     480    return $Output;
    481481  }
    482482
     
    488488      $Output .= '<a href="?year='.$DbRow['Id'].'">'.$DbRow['Year'].'</a> ';
    489489    $Output .= '<br/>';
    490     return ($Output);
     490    return $Output;
    491491  }
    492492
Note: See TracChangeset for help on using the changeset viewer.