Last active
December 21, 2015 16:49
-
-
Save amacgregor/6336346 to your computer and use it in GitHub Desktop.
Updated code with error message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php $registry = Mage::registry('loaded_registry'); ?> | |
| <?php if($registry->getId()): ?> | |
| <h3><?php echo $registry->getEventName(); ?></h3> | |
| <p><strong><?php $this->__('Event Date:') ?> <?php echo $registry->getEventDate(); ?></strong></p> | |
| <p><strong><?php $this->__('Event Location:') ?> <?php echo $registry->getEventLocation(); ?></strong></p> | |
| <?php else: ?> | |
| <h3>There was an error, the requested registry does not exist.</h3> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment