Changeset 874 for trunk/Modules/SpeedTest/SpeedTest.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/SpeedTest/SpeedTest.php
r873 r874 41 41 if (count($this->System->PathItems) > 1) 42 42 { 43 if ($this->System->PathItems[1] == 'download.php') return ($this->ShowDownload());44 //else if ($this->System->PathItems[1] == 'rss') return ($this->ShowRSS());45 else return (PAGE_NOT_FOUND);46 } else return ($this->ShowMain());43 if ($this->System->PathItems[1] == 'download.php') return $this->ShowDownload(); 44 //else if ($this->System->PathItems[1] == 'rss') return $this->ShowRSS(); 45 else return PAGE_NOT_FOUND; 46 } else return $this->ShowMain(); 47 47 } 48 48 … … 114 114 print "</center>\n"; 115 115 } 116 return ($Output);116 return $Output; 117 117 } 118 118 }
Note:
See TracChangeset
for help on using the changeset viewer.