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/Packages/Common/Page.php

    r873 r874  
    2020  function Show()
    2121  {
    22     return ('');
     22    return '';
    2323  }
    2424
     
    2626  {
    2727    $Output = $this->Show();
    28     return ($Output);
     28    return $Output;
    2929  }
    3030
    3131  function SystemMessage($Title, $Text)
    3232  {
    33     return (call_user_func_array($this->OnSystemMessage, array($Title, $Text)));
     33    return call_user_func_array($this->OnSystemMessage, array($Title, $Text));
    3434  }
    3535}
Note: See TracChangeset for help on using the changeset viewer.