Changeset 55 for trunk/Packages/Common/Page.php
- Timestamp:
- Apr 7, 2020, 12:55:39 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Page.php
r37 r55 18 18 function Show() 19 19 { 20 return ('');20 return ''; 21 21 } 22 22 … … 24 24 { 25 25 $Output = $this->Show(); 26 return ($Output);26 return $Output; 27 27 } 28 28 29 29 function SystemMessage($Title, $Text) 30 30 { 31 return (call_user_func_array($this->OnSystemMessage, array($Title, $Text)));31 return call_user_func_array($this->OnSystemMessage, array($Title, $Text)); 32 32 } 33 33 }
Note:
See TracChangeset
for help on using the changeset viewer.