Changeset 874 for trunk/Modules/Meals/Meals.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Meals/Meals.php
r873 r874 15 15 if (count($this->System->PathItems) > 1) 16 16 { 17 if ($this->System->PathItems[1] == 'tisk') return ($this->ShowPrint());18 else if ($this->System->PathItems[1] == 'menuedit.php') return ($this->ShowEdit());19 else return (PAGE_NOT_FOUND);20 } else return ($this->ShowMenu());17 if ($this->System->PathItems[1] == 'tisk') return $this->ShowPrint(); 18 else if ($this->System->PathItems[1] == 'menuedit.php') return $this->ShowEdit(); 19 else return PAGE_NOT_FOUND; 20 } else return $this->ShowMenu(); 21 21 } 22 22 … … 40 40 $Output .= 'Cena jednoho menu: '.$Row['Price'].' Kč<br />'; 41 41 $Output .= $Row['Info']; 42 return ($Output);42 return $Output; 43 43 } 44 44 … … 91 91 92 92 $Output .= '</body></html>'; 93 return ($Output);93 return $Output; 94 94 } 95 95 … … 117 117 $Output .= '</select></td></tr>'; 118 118 $LastWeekOfYear = $WeekOfYear; 119 return ($Output);119 return $Output; 120 120 } 121 121 … … 173 173 '<div align="center"><input type="submit" value="Uložit údaje"></div> 174 174 </fieldset></form>'; 175 return ($Output);175 return $Output; 176 176 } 177 177 }
Note:
See TracChangeset
for help on using the changeset viewer.