blob: f1396edb46f992a4956fe6209e0f402f2695ce9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
# put the current meal items in an array if it exists
if ( isset($_SESSION['currentMeal']) ) {
$smarty->assign("currentMealItems", $_SESSION['currentMeal']);
}
# grab the page
$smarty->assign("sidebar_left", $smarty->fetch("sidebar_left.tpl"));
?>
|