Changeset 874 for trunk/Application/View.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/View.php
r873 r874 38 38 function SystemMessage($Title, $Text) 39 39 { 40 return ('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>');40 return '<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>'; 41 41 //ShowFooter(); 42 42 //die(); … … 68 68 } 69 69 $Output = substr($Output, 6); 70 return ($Output);70 return $Output; 71 71 } 72 72 … … 106 106 $Output .= '</div></div>'; 107 107 } 108 return ($Output);108 return $Output; 109 109 } 110 110 … … 125 125 } 126 126 $Output .= '</body></html>'; 127 return ($Output);127 return $Output; 128 128 } 129 129 … … 138 138 if ($this->FormatHTML == true) $Output = $this->FormatOutput($Output); 139 139 } 140 return ($Output);140 return $Output; 141 141 } 142 142 … … 147 147 $Page->Database = $this->Database; 148 148 $Page->FormatHTML = $this->FormatHTML; 149 return ($Page);149 return $Page; 150 150 } 151 151 … … 186 186 $nn = $n; 187 187 } 188 return ($out);188 return $out; 189 189 } 190 190 }
Note:
See TracChangeset
for help on using the changeset viewer.