JustDerb / Snack-Tack

NO LONGER MAINTAINED | A website for college students to help them better find club sales. These sales include the selling of food, apparel, or anything else. Currently in Alpha. Email us at admin@snacktack.com
http://www.snacktack.com
2 stars 0 forks source link

plan.php event types not showing icon #14

Closed JustDerb closed 12 years ago

JustDerb commented 12 years ago

Have the icon shown and show all the information about the type

JustDerb commented 12 years ago

@camlegleiter , the displayEventAwardInfo.php needs another argument to toggle printing the <li> </li> tags so that the HTML doesn't break on the plan.php page. Make the argument default to printing the <li> </li> tags so that you don't need to change anything but the plan.php file. Change in the plan.php file:

printEventAwardInfo($type->array['Icon'], $type->array['Name'], $type->array['Name'], $type->array['Description'], $type->array['Category'], "", false,false);//,false);

becomes

printEventAwardInfo($type->array['Icon'], $type->array['Name'], $type->array['Name'], $type->array['Description'], $type->array['Category'], "", false,false,false);

When that's done, you can close this issue.